Go to file
Víðir Valberg Guðmundsson 4c75991fcb Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
src Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
.gitignore Renamed membersystem => project (because of tab completion nuisance) and profiles => users 2019-08-31 19:41:35 +02: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 Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
Makefile Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
README.md Use poetry to control the projects dependencies. Also setup black for pre-commit. 2019-09-01 00:25:25 +02:00
docker-compose.yml Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
entrypoint.sh docker: Add entrypoint.sh 2021-02-09 23:01:15 +01:00
env Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
poetry.lock Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00
pyproject.toml Refactoring things and doing stuff WIP way. 2021-02-27 21:07:48 +01:00

README.md

member.data.coop

To start developing:

Get poetry

$ python3 -m pip install --user pipx
$ pipx install poetry

Run poetry to setup environment

$ poetry install

Run this make target, which installs all the requirements and sets up a development database.

$ make dev-setup

To run the Django development server:

$ poetry run python manage.py runserver

Before you push your stuff, run tests:

$ make test