generated from GDGVIT/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfly.toml
37 lines (29 loc) · 1.02 KB
/
fly.toml
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
# fly.toml app configuration file generated for atapp on 2023-10-16T18:27:08+05:30
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "atapp"
primary_region = "sin"
[build]
[env]
ALLOWED_HOSTS = "0.0.0.0"
SERVER_HOST = "0.0.0.0"
SERVER_PORT = "8000"
TOKEN_HOUR_LIFESPAN = "24"
GOOGLE_CLIENT_ID = "377508142690-22j3k6vq9mkbp123350gat49vc4ovi1l.apps.googleusercontent.com"
GOOGLE_REDIRECT_URI = "http://localhost:8000/v1/auth/google/callback"
GOOGLE_REDIRECT_URI_PROD = "https://atapp.fly.dev/v1/auth/google/callback"
GOOGLE_AUTH_URL = "https://accounts.google.com/o/oauth2/auth"
GOOGLE_TOKEN_URL = "https://oauth2.googleapis.com/token"
FRONTEND_SOCIAL_REDIRECT = "http://127.0.0.1:8000/socialback"
FRONTEND_BASE = "https://nock.vercel.app"
[mounts]
source = "app_logs"
destination = "/app_logs"
[http_service]
internal_port = 8000
force_https = true
auto_stop_machines = false
auto_start_machines = false
min_machines_running = 0
processes = ["app"]