A microblog application written in Python powered by Flask and Neo4j. Extension of Flask's microblog tutorial, Flaskr.
Make sure Neo4j is running first!
If you're on Neo4j >= 2.2, make sure to set environment variables NEO4J_USERNAME
and NEO4J_PASSWORD
to your username and password, respectively:
$ export NEO4J_USERNAME=username
$ export NEO4J_PASSWORD=password
Or, set dbms.security.auth_enabled=false
in conf/neo4j-server.properties
.
Then with bash shell:
cd cloned_dir
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
python run.py
with fish shell:
cd cloned_dir
pip install virtualenv
virtualenv venv
. venv/bin/activate.fish
pip install -r requirements.txt
python run.py