blob: cf1c715fc1ea3e006e611fa58059177ceaf65944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# License
See LICENSE file.
# Authors
See AUTHORS file.
# Dependencies
- python
- mysql-python
- Django = 0.96
# Installation
For a simple testing installation:
1. Install dependencies.
2. Configure database
3. Populate database with test data
4. Use the following commands to start a service instance
export PYTHONPATH=`pwd`:${PYTHONPATH}
export DJANGO_SETTINGS_MODULE=archweb_dev.settings
python manage.py runserver
|