Skip to content

Commit dafa6e9

Browse files
committed
Added digital ocean database.yml and vendored all gems
1 parent a5b28f9 commit dafa6e9

File tree

149 files changed

+26
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+26
-66
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ GEM
178178
maildir (>= 0.5.0)
179179
mime-types (2.99)
180180
mini_portile2 (2.0.0)
181-
minitest (5.8.3)
181+
minitest (5.8.4)
182182
minitest-reporters (1.1.7)
183183
ansi
184184
builder

config/database.do.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This file is configured for the Digital Ocean install described at
2+
# http://support.helpy.io/en/knowledgebase/11-Installing-Helpy/docs/1-Installing-Helpy-on-Digital-Ocean
3+
4+
default: &default
5+
adapter: postgresql
6+
encoding: unicode
7+
# For details on connection pooling, see rails configuration guide
8+
# http://guides.rubyonrails.org/configuring.html#database-pooling
9+
pool: 5
10+
11+
development:
12+
<<: *default
13+
database: helpy_development
14+
port: 5432
15+
host: localhost
16+
17+
test:
18+
<<: *default
19+
database: helpy_test
20+
21+
production:
22+
<<: *default
23+
database: helpy_production
24+
username: rails
25+
password: <%= ENV['APP_DATABASE_PASSWORD'] %>

config/database.yml

Lines changed: 0 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
# PostgreSQL. Versions 8.2 and up are supported.
2-
#
3-
# Install the pg driver:
4-
# gem install pg
5-
# On OS X with Homebrew:
6-
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
7-
# On OS X with MacPorts:
8-
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
9-
# On Windows:
10-
# gem install pg
11-
# Choose the win32 build.
12-
# Install PostgreSQL and put its /bin directory on your path.
13-
#
14-
# Configure Using Gemfile
15-
# gem 'pg'
16-
#
171
default: &default
182
adapter: postgresql
193
encoding: unicode
@@ -27,59 +11,10 @@ development:
2711
port: 5432
2812
host: localhost
2913

30-
# The specified database role being used to connect to postgres.
31-
# To create additional roles in postgres see `$ createuser --help`.
32-
# When left blank, postgres will use the default role. This is
33-
# the same name as the operating system user that initialized the database.
34-
#username: helpy
35-
36-
# The password associated with the postgres role (username).
37-
#password:
38-
39-
# Connect on a TCP socket. Omitted by default since the client uses a
40-
# domain socket that doesn't need configuration. Windows does not have
41-
# domain sockets, so uncomment these lines.
42-
#host: localhost
43-
44-
# The TCP port the server listens on. Defaults to 5432.
45-
# If your server runs on a different port number, change accordingly.
46-
#port: 5432
47-
48-
# Schema search path. The server defaults to $user,public
49-
#schema_search_path: myapp,sharedapp,public
50-
51-
# Minimum log levels, in increasing order:
52-
# debug5, debug4, debug3, debug2, debug1,
53-
# log, notice, warning, error, fatal, and panic
54-
# Defaults to warning.
55-
#min_messages: notice
56-
57-
# Warning: The database defined as "test" will be erased and
58-
# re-generated from your development database when you run "rake".
59-
# Do not set this db to the same as development or production.
6014
test:
6115
<<: *default
6216
database: helpy_test
6317

64-
# As with config/secrets.yml, you never want to store sensitive information,
65-
# like your database password, in your source code. If your source code is
66-
# ever seen by anyone, they now have access to your database.
67-
#
68-
# Instead, provide the password as a unix environment variable when you boot
69-
# the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database
70-
# for a full rundown on how to provide these environment variables in a
71-
# production deployment.
72-
#
73-
# On Heroku and other platform providers, you may have a full connection URL
74-
# available as an environment variable. For example:
75-
#
76-
# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase"
77-
#
78-
# You can use this database configuration with:
79-
#
80-
# production:
81-
# url: <%= ENV['DATABASE_URL'] %>
82-
#
8318
production:
8419
<<: *default
8520
database: helpy_production
26.5 KB
Binary file not shown.

vendor/cache/actionpack-4.2.5.gem

182 KB
Binary file not shown.

vendor/cache/actionview-4.2.5.gem

142 KB
Binary file not shown.

vendor/cache/activejob-4.2.5.gem

19 KB
Binary file not shown.

vendor/cache/activemodel-4.2.5.gem

44.5 KB
Binary file not shown.
322 KB
Binary file not shown.
323 KB
Binary file not shown.

0 commit comments

Comments
 (0)