forked from data.coop/membersystem
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.
|
3 years ago | |
---|---|---|
accounting | 5 years ago | |
membership | 5 years ago | |
project | 3 years ago | |
users | 3 years ago | |
.gitignore | 3 years ago | |
.pre-commit-config.yaml | 5 years ago | |
Makefile | 5 years ago | |
README.rst | 5 years ago | |
manage.py | 3 years ago | |
pytest.ini | 3 years ago | |
requirements.txt | 3 years ago | |
requirements_dev.txt | 5 years ago | |
setup.cfg | 5 years ago |
README.rst
member.data.coop
================
To start developing:
# Create a virtualenv with python 3
$ mkvirtualenv -p python3 datacoop
# Run this make target, which installs all the requirements and sets up a
# development database.
$ make dev-setup
To run the Django development server:
$ python manage.py runserver
Before you push your stuff, run tests:
$ make test