Skip to content

Commit 1b850d5

Browse files
author
Ilya N. Zykin
committed
Add __SETTINGS__ folder
1 parent 8ab6b66 commit 1b850d5

File tree

3 files changed

+114
-0
lines changed

3 files changed

+114
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
db:
2+
host: localhost
3+
pool: 5
4+
5+
username: rails
6+
database: rails_app_db
7+
password: SECRETPASSWORD
8+
9+
adapter: postgresql
10+
encoding: unicode
11+
port: 5432
12+
13+
# adapter: mysql
14+
# encoding: utf8
15+
# port: 3306
16+
# socket: /tmp/socket.sock
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
app:
2+
name: 'example.com'
3+
root: '/home/rails/www/example.com'
4+
5+
repo: 'https://github.com/DeployRB/Rails5App.git'
6+
branch: 'master'
7+
8+
rvm:
9+
rvm_path: '/home/rails/.rvm/bin/rvm'
10+
ruby_version: 'ruby-2.3.1'
11+
gemset_name: 'example_com'
12+
# rubygems_version: '1.5.3'
13+
# bundler_version: '1.3.5'
14+
# rake_version: '0.8.7'
15+
16+
copy_app:
17+
settings:
18+
- app.yml
19+
- app_mailer.yml
20+
- oauth.yml
21+
- devise.yml
22+
- services.yml
23+
24+
link:
25+
shared:
26+
- log
27+
- tmp
28+
- db/REDIS
29+
- db/SPHINX
30+
- node_modules
31+
- public/uploads
32+
- public/assets
33+
34+
git:
35+
submodules:
36+
- '.'
37+
38+
tools:
39+
os: debian
40+
app_server: puma
41+
assets_precompile: true
42+
letsencript: false
43+
binstubs: true
44+
new_relic: false
45+
whenever: true
46+
sphinx: false
47+
sidekiq: true
48+
redis: true
49+
ssl: false
50+
51+
redis:
52+
port: 6010
53+
54+
sidekiq:
55+
namespace:
56+
'example_com'
57+
58+
ui:
59+
user: admin
60+
password: qwerty12345
61+
62+
sphinx:
63+
mysql_port: 9156
64+
65+
web_server:
66+
domain: 'example.com'
67+
socket_name: 'example_com'
68+
69+
ssl:
70+
files:
71+
- example_com.key
72+
- example_com.ssl-bundle.crt
73+
74+
private_key: example_com.key
75+
bundle_crt: example_com.ssl-bundle.crt
76+
77+
dump:
78+
db:
79+
from: ~/DUMPS
80+
to: ~/DUMPS
81+
files:
82+
from:
83+
to: ~/DUMPS/example.com
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
ssh:
2+
user:
3+
sudo:
4+
domain: example.com
5+
login: root
6+
password: a0000000000000000000000000004
7+
key: ~/.ssh/id_rsa
8+
key_pub: ~/.ssh/id_rsa.pub
9+
10+
deployer:
11+
domain: example.com
12+
login: rails
13+
password: a0000000000000000000000000005
14+
key: ~/.ssh/id_rsa
15+
key_pub: ~/.ssh/id_rsa.pub

0 commit comments

Comments
 (0)