Go to file
Víðir Valberg Guðmundsson a9a88c9290
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build was killed Details
Keycloak integration
2023-01-22 10:20:41 +01:00
requirements Add the start for administration of memberships. 2023-01-02 23:06:00 +01:00
src Fix site context variable with a context processor. 2023-01-21 16:20:50 +01:00
.dockerignore Include entrypoint.sh in the docker image. 2022-11-22 17:12:06 +01:00
.drone.yml Push to a non-dotted repo. 2022-11-24 23:55:01 +01:00
.gitignore Getting ready for some translations. 2021-02-28 23:55:01 +01:00
.pre-commit-config.yaml Upgrade to python 3.11. Update pre-commit. Small settings adjustments. 2023-01-11 21:55:58 +01:00
Dockerfile Upgrade to python 3.11. Update pre-commit. Small settings adjustments. 2023-01-11 21:55:58 +01:00
Makefile Fix site context variable with a context processor. 2023-01-21 16:20:50 +01:00
README.md Update readme. Make Makefile more nice. 2021-03-01 00:15:01 +01:00
docker-compose.yml Keycloak integration 2023-01-22 10:20:41 +01:00
entrypoint.sh Fix entrypoint paths. Add uvicorn. Set correct port. 2021-03-01 14:13:19 +01:00
env Fixes and cleanup. 2022-08-09 19:29:42 +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