Go to file
Víðir Valberg Guðmundsson 0278b2b48e
continuous-integration/drone/push Build is passing Details
Upgrade django, python, etc.
2021-12-13 20:44:09 +01:00
src Upgrade django, python, etc. 2021-12-13 20:44:09 +01:00
.drone.yml Upgrade django, python, etc. 2021-12-13 20:44:09 +01:00
.gitignore Getting ready for some translations. 2021-02-28 23:55:01 +01:00
.pre-commit-config.yaml Upgrade django, python, etc. 2021-12-13 20:44:09 +01: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 Upgrade django, python, etc. 2021-12-13 20:44:09 +01:00
pyproject.toml Upgrade django, python, etc. 2021-12-13 20:44:09 +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