Go to file
Víðir Valberg Guðmundsson 4c5d0e30ab
continuous-integration/drone/push Build is passing Details
Poetry lock. Bump django to 4.1.
2022-08-09 19:17:29 +02:00
src Debug toolbar is only available when DEBUG is True. 2022-08-09 16:33:56 +02:00
.drone.yml Get build args from env. 2022-08-09 16:26:31 +02:00
.gitignore Getting ready for some translations. 2021-02-28 23:55:01 +01:00
.pre-commit-config.yaml Pre-commit update and run. 2022-08-09 14:39:02 +02:00
Dockerfile Upgrade django, python, etc. 2021-12-13 20:44:09 +01:00
Makefile Upgrade django, python, etc. 2021-12-13 20:44:09 +01:00
README.md Update readme. Make Makefile more nice. 2021-03-01 00:15:01 +01:00
docker-compose.yml Upgrade django, python, etc. 2021-12-13 20:44:09 +01:00
entrypoint.sh Fix entrypoint paths. Add uvicorn. Set correct port. 2021-03-01 14:13:19 +01:00
env Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
poetry.lock Poetry lock. Bump django to 4.1. 2022-08-09 19:17:29 +02:00
pyproject.toml Poetry lock. Bump django to 4.1. 2022-08-09 19:17:29 +02: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