This repository has been archived by the owner on Jul 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
65 lines (40 loc) · 1.42 KB
/
README
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
Setup en desarrollo
===================
Instalar PostgreSQL. En Mac Bajar la versión 9.0 desde
http://www.enterprisedb.com/products-services-training/pgdownload#osx, instalar, y luego ejecutar:
Luego:
$ gem install bundler
$ bundle install
Si bundle install falla en Mac, ejecutar lo siguiente:
$ export PATH=$PATH:/Library/PostgreSQL/9.0/bin/
E intentar ejecutar "bundle install" nuevamente
Luego:
$ cp config/database.yml.example config/database.yml
$ cp spec/support/google_credentials.rb.example spec/support/google_credentials.rb
Editar config/database.yml y spec/support/google_credentials.rb
$ rake db:create
$ rake db:migrate
$ script/server
Deploy
======
Configuracion de git para que apunte a los repositorios en heroku:
$ git remote add heroku [email protected]:trilla.git
$ git remote add staging [email protected]:trilla-staging.git
Luego para deployar en staging:
$ git push staging master
$ heroku rake db:migrate --app trilla-staging
Para deployar en produccion:
$ git push heroku master
$ heroku rake db:migrate --app trilla
Problemas
=========
Al ejecutar "bundle install" no puede instalar 'nokogiri', esto se soluciona ejecutando:
* En Debian/Ubuntu:
sudo apt-get install libxslt-dev libxml2-dev
* En Fedora/openSUSE:
sudo yum install libxslt-devel libxml2-devel
Para errores al instalar 'pg', ejecutar:
* En Debian/Ubuntu:
sudo apt-get install libpq5 libpq-dev
* En Fedora/openSUSE:
sudo yum install postgresql-devel