blob: 810d9d361d7d04f2db4c2e7453b4f12d794d9a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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
mysql -u carbon -p bucky < bucky-20150903.sql
# node index
Server will be running at http://lvh.me:5000/
|