This is the repo for the JavaScript.com website.
Install NVM ($ brew install nvm
and follow instructions)
nvm install
nvm use
npm install -g gulp
npm install
Run the application with $ npm start
. You can also set the environment variables at start time. Here's an example:
$ DATABASE_URL=pg://localhost:5432/javascriptcom npm start
For debugging all the things, run DEBUG=* npm start
.
To get started cp config.example.js config.js
then edit.
Whenever you do the initial npm install
a db called javascriptcom
is created
for you. In the event that you need to drop that database and recreate it, don't
forget to either run npm install
again or createdb javascriptcom
NPM will run new migrations whenever you npm start
. In order for it to work,
you'll need to set the DATABASE_URL
ENV to pg://localhost:5432/javascriptcom.
Migrations are already run for you after the initial npm install
To create new migrations see the node-pg-migraton documentation.
After setting your database up run gulp seeds
to seed your database.
If you add any runtime dependencies, you must run npm shrinkwrap
and
commit changes to npm-shrinkwrap.json
.
To build assets locally, you'll need to install Bower dependencies and run these Gulp tasks:
$ bower install
$ gulp build
Remember to re-run these tasks after pulling or changing branches. See the gulp configuration for more options.