Go to file
Benjamin Bach 056ca430ef First pytest stuff 2018-06-24 01:06:35 +02:00
accounting First pytest stuff 2018-06-24 01:06:35 +02:00
membership Adding accounting and membership apps + pre-commit linting stuff 2018-06-23 23:41:58 +02:00
membersystem Adding accounting and membership apps + pre-commit linting stuff 2018-06-23 23:41:58 +02:00
profiles Adding accounting and membership apps + pre-commit linting stuff 2018-06-23 23:41:58 +02:00
.gitignore First pytest stuff 2018-06-24 01:06:35 +02:00
.pre-commit-config.yaml Adding accounting and membership apps + pre-commit linting stuff 2018-06-23 23:41:58 +02:00
Makefile Adding accounting and membership apps + pre-commit linting stuff 2018-06-23 23:41:58 +02:00
README.rst First pytest stuff 2018-06-24 01:06:35 +02:00
manage.py Initial commit. 2018-06-23 13:00:26 +02:00
pytest.ini First pytest stuff 2018-06-24 01:06:35 +02:00
requirements.txt django-money dependency 2018-06-23 20:54:37 +02:00
requirements_dev.txt First pytest stuff 2018-06-24 01:06:35 +02:00
setup.cfg Adding accounting and membership apps + pre-commit linting stuff 2018-06-23 23:41:58 +02:00

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