bucky ===== # npm install # brew install mysql (used for main database) # brew install mongodb (used for sessions) # set up the mysql database: mysql -uroot CREATE USER 'carbon'@'localhost' IDENTIFIED BY 'the_password'; CREATE DATABASE bucky; USE bucky; GRANT ALL PRIVILEGES ON bucky.* TO 'carbon'@'localhost'; # copy .env-sample to .env and edit the values to correspond # load up a copy of bucky scp carbon@carbonpictures.com:bucky-20150903.sql . mysql -u carbon -p bucky < bucky-20150903.sql # run the migrations (makes most blob fields into text) knex migrate:latest # node index Server will be running at http://lvh.me:5000/