Go to file
valberg 50e2ba642f Merge pull request 'Refactoring things and doing stuff in a MVP way.' (#15) from vidir_refactor into master
Reviewed-on: data.coop/membersystem#15
2021-03-12 16:20:50 +00:00
src Setting base template for password reset flow. Some translations. 2021-03-12 17:16:13 +01:00
.drone.yml Add drone config. 2021-03-01 13:46:16 +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 Expose port 8000 in the image. 2021-03-01 21:44:57 +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 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 Add whitenoise. 2021-03-01 20:34:51 +01:00
pyproject.toml Add whitenoise. 2021-03-01 20:34:51 +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