Go to file
Víðir Valberg Guðmundsson f35a31f259 Enable buildkit when building. 2021-03-01 00:20:59 +01:00
src Getting ready for some translations. 2021-02-28 23:55:01 +01:00
.gitignore Getting ready for some translations. 2021-02-28 23:55:01 +01:00
.pre-commit-config.yaml Remove setup.cfg, move relevant flake8 arguments into pre-commit config. Update pre-commit hooks. 2019-09-01 09:45:45 +02:00
Dockerfile Getting ready for some translations. 2021-02-28 23:55:01 +01:00
Makefile Enable buildkit when building. 2021-03-01 00:20:59 +01:00
README.md Update readme. Make Makefile more nice. 2021-03-01 00:15:01 +01:00
docker-compose.yml Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
entrypoint.sh Getting ready for some translations. 2021-02-28 23:55:01 +01:00
env Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
poetry.lock Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
pyproject.toml Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00

README.md

member.data.coop

Development requirements

  • Docker
  • Docker compose
  • pre-commit (preferred for contributions)

Start local server

Given that the requirements above are installed, it should be as easy as:

$ make migrate

This will setup the database. Next run:

$ make run

This will build the docker image and start the member system on http://localhost:8000.

You can create a superuser by running:

$ make createsuperuser

Make migrations:

$ make makemigrations

Make messages:

$ make makemessages

Running tests:

$ make test