-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.yaml
73 lines (63 loc) · 2.2 KB
/
config.yaml
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
#######################################################################################################################
# Upsun demo project configuration
#######################################################################################################################
# Application configuration.
applications:
# App 1: Frontend (JS)
frontend:
source:
root: "frontend"
type: "nodejs:18"
variables:
env:
REACT_APP_BACKEND_URL: "/"
npm_config_loglevel: silent
NPM_CONFIG_UPDATE_NOTIFIER: false
hooks:
build: |
set -eux
npm install
export REACT_APP_PROJECT_ID=$PLATFORM_PROJECT
npm run build
deploy: |
bash scripts/api.sh
web:
locations:
/:
root: build
index:
- index.html
expires: 2m
scripts: false
allow: true
rules:
static\/*:
expires: 365d
mounts:
/build/api/v1/environment:
source: storage
source_path: api
# #add_service_start
# ######################################################################################################################
# # Step 3: Add a service. Uncomment this section.
# ######################################################################################################################
# relationships:
# redis_session:
# service: "redis_service"
# endpoint: "redis"
# services:
# redis_service:
# type: "redis:7.0"
# ######################################################################################################################
# #add_service_end
# Routes configuration.
routes:
"https://{default}/":
id: frontend
type: upstream
primary: true
upstream: "frontend:http"
"https://www.{default}":
id: frontend-redirect
type: redirect
to: "https://{default}/"