forked from publiclab/plots2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.environment
96 lines (57 loc) · 1.65 KB
/
README.environment
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
0. Prerequisites:
---
Ruby, MySQL, Rails 3.2.x, NodeJS, Bower
1. Install RVM
---
Read about and install RVM here: https://rvm.io/ (preferred over apt-get version)
Then configure it:
rvm install 2.1.2 -n plots2
rvm 2.1.2-plots2
2. Setup Database adapters
---
MySQL support on Debian/Ubuntu:
sudo apt-get install libmysqlclient-dev
PostgreSQL support on Debian:
sudo apt-get install postgresql-server-dev-X.Y
SQLite support:
(nothing?)
create config/database.yml with test, development headings.
See config/database.yml.example and modify as desired.
3. Install Gems
---
cd $ROOT/
General:
bundle update # not always required, but handy
bundle install
Exclude testing and sqlite:
bundle install --without test sqlite
Exclude mysql support:
bundle install --without mysql
4. Install environmental dependencies
---
this might be covered by bundler above? -btb
gem install passenger
5. Set Up the Database
---
Create the tables, schema, and fill the database with example seed data:
rake db:setup
Fill database with the example data:
rake db:seed
6. Prepare static files
---
Install NodeJS using your favorite method for your operating system.
Install bower.
npm install bower
Run `bower install` for the first run, `bower update` for later runs.
bower install
If bower is not found, try this longer path:
node_modules/bower/bin/bower install
7. Run the Rails app
---
Run tests, just to make sure.
rake test
Run development by default.
passenger start
Login credentials:
login: admin, moderator, or user
password: password