-
Notifications
You must be signed in to change notification settings - Fork 65
/
Makefile
94 lines (80 loc) · 3.17 KB
/
Makefile
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
# A bunch of methods to work with fly.io
# These are the fly.io application name
web-app-name = rubysg-reboot
worker-app-name = rubysg-reboot-worker
database-app-name = rubysg-reboot-db
deploy-app:
##################################################
## Deploying Web Application
##################################################
flyctl deploy --app $(web-app-name) --remote-only -c fly.toml
deploy-worker:
##################################################
## Deploying Job Worker
##################################################
flyctl deploy --app $(worker-app-name) --remote-only -c fly.worker.toml
deploy-db:
##################################################
## Deploying Job Worker
##################################################
flyctl deploy --app $(database-app-name) --remote-only -c fly.db.toml
deploy:
##################################################
## Deploying
##################################################
make deploy-app
make deploy-worker
show-app-resources:
##################################################
## Fetching CPU and RAM allocation for App machine
##################################################
fly scale show --app $(web-app-name)
show-worker-resources:
##################################################
## Fetching CPU and RAM allocation for Worker
## machine
##################################################
fly scale show --app $(web-worker-name)
show-db-resources:
##################################################
## Fetching CPU and RAM allocation for Database
## machine
##################################################
fly scale show --app $(database-app-name)
fly volumes list --app $(database-app-name)
connect-to-app-machine:
##################################################
## Connect to the machine hosting the web app in
## /app directory
##################################################
fly ssh console --app $(web-app-name)
connect-to-worker-machine:
##################################################
## Connect to the machine hosting the worker app
## in /app directory
##################################################
fly ssh console --app $(worker-app-name)
connect-to-database-machine:
##################################################
## Connect to the machine hosting the web app in
## /app directory
##################################################
fly ssh console --app $(database-app-name)
connect-to-postgres-console:
##################################################
## Connecting to production postgres db
## \list to see all databases
## \c to choose database
## \dt to list all tables
##################################################
flyctl postgres connect --app $(database-app-name)
connect-to-app-console:
##################################################
## Connect to the rails console for web app
##################################################
fly ssh console --app $(web-app-name) --pty -C "/app/bin/rails console"
connect-to-worker-console:
##################################################
## Connect to the rails console for worker
##################################################
fly ssh console --app $(worker-app-name) --pty -C "/app/bin/rails console"