Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicolewhite/neo4j-flask
Flaskr Extended with Neo4j and Py2neo.
https://github.com/nicolewhite/neo4j-flask
Last synced: 26 days ago
JSON representation
Flaskr Extended with Neo4j and Py2neo.
- Host: GitHub
- URL: https://github.com/nicolewhite/neo4j-flask
- Owner: nicolewhite
- Archived: true
- Created: 2015-01-07T19:37:36.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-12T23:29:01.000Z (almost 7 years ago)
- Last Synced: 2024-08-08T23:26:42.879Z (5 months ago)
- Language: Python
- Homepage: http://nicolewhite.github.io/neo4j-flask/
- Size: 2.9 MB
- Stars: 311
- Watchers: 25
- Forks: 115
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# neo4j-flask
A microblog application written in Python powered by Flask and Neo4j. Extension of Flask's microblog tutorial, [Flaskr](http://flask.pocoo.org/docs/0.10/tutorial/).## Usage
Make sure [Neo4j](http://neo4j.com/download/other-releases/) 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:
```
git clone https://github.com/nicolewhite/neo4j-flask.git
cd neo4j-flask
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
python run.py
```[http://localhost:5000](http://localhost:5000)