Go to file
Benjamin Bach 6dc65bbfb7 Basic User management skeleton 2019-08-31 20:46:49 +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
project Basic User management skeleton 2019-08-31 20:46:49 +02:00
users Basic User management skeleton 2019-08-31 20:46:49 +02: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 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 Renamed membersystem => project (because of tab completion nuisance) and profiles => users 2019-08-31 19:41:35 +02:00
pytest.ini Renamed membersystem => project (because of tab completion nuisance) and profiles => users 2019-08-31 19:41:35 +02:00
requirements.txt Bump to Django 2.2 2019-08-31 19:44:02 +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