Skip to content
This repository was archived by the owner on Feb 9, 2018. It is now read-only.

neo4j-contrib/neo4j-org

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d27e094 · Apr 8, 2016
Feb 5, 2013
Aug 20, 2015
Oct 29, 2012
Jul 2, 2014
Jun 4, 2014
Nov 13, 2013
Jul 23, 2014
Mar 20, 2013
Oct 19, 2012
Nov 14, 2012
Apr 8, 2016
Mar 12, 2013
May 15, 2015
May 21, 2014
May 29, 2013

Repository files navigation

neo4j.org

Served with express.js, mostly static pages with javascript.

Running local

With nodes.js installed, first install dependencies like so:

npm install

Then run the server:

node app

Which should report something like:

"Express server listening on port 3000"

Which means you can now open a browser to http://localhost:3000

Ongoing Development

Publish images or assets to s3 bucket (which is backing a cloudfront CDN)

Install s3tools and configure with AWS credentials:

s3cmd --configure
s3cmd ls s3://assets.neo4j.org/

// -P means public acl and -cf-invalidate does cloudfront invalidation
s3cmd -P --cf-invalidate public/assets/path/file s3://assets.neo4j.org/path/

will be available as http://assets.neo4j.org/path/file

Get the latest changes:

git pull

Submit your local changes:

git commit -am "beautification and verbal eloquence"
git push origin master

Publish assets like images to S3

 s3cmd --configure
 s3cmd ls s3://assets.neo4j.org/
 s3cmd put --acl-public  public/assets/path/file s3://assets.neo4j.org/path/

Publish

For staging content, push to:

git remote add staging git@heroku.com:neo4j-org-staging.git
git push staging master

Then view the website like so:

heroku open --remote staging

Or go directly here: http://obscure-wildwood-7384.herokuapp.com

For production, push to the default remote:

git remote add live git@heroku.com:neo4j-org-live.git
git push live master

Viewable by:

heroku open --remote live

Or go directly here: http://neo4j-org.herokuapp.com/

References