You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
continuous-integration/drone/push Build is passing
Details
|
2 weeks ago | |
---|---|---|
requirements | 1 month ago | |
src | 2 weeks ago | |
.dockerignore | 2 months ago | |
.drone.yml | 2 months ago | |
.gitignore | 2 years ago | |
.pre-commit-config.yaml | 3 weeks ago | |
Dockerfile | 3 weeks ago | |
Makefile | 2 weeks ago | |
README.md | 2 years ago | |
docker-compose.yml | 1 year ago | |
entrypoint.sh | 2 years ago | |
env | 6 months ago |
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