blob: 7cf27c5fc886ef2540956d8a80d9197bc8810d54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Content Database
## Setup
First create a Python virtual env:
virtualenv env
source env/bin/activate
then use pip:
pip install -r requirements.txt
## Running
You need to enter the virtual environment if you haven't yet in
the current session:
source env/bin/activate
Reset the database like so:
python setup.py -d
Then run the server:
python rundebug.py
Then view in your web browser:
http://localhost:5000/
|