-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenezio.yaml
27 lines (27 loc) · 882 Bytes
/
genezio.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
# The name of the project.
name: vyoma-fullstack-ecomm
# The region where the project is deployed. Available regions: us-east-1, eu-central-1
region: us-east-1
# The version of the Genezio YAML configuration to parse.
yamlVersion: 2
backend:
# The root directory of the backend.
path: ./backend
# Information about the backend's programming language.
language:
# The name of the programming language.
name: js
# The package manager used by the backend.
packageManager: npm
scripts:
deploy: npm install && npm run build
# Information about the backend's functions.
functions:
# The name (label) of the function.
- name: vyoma-express-api-function
# The path to the function's code.
path: ./
# The name of the function handler
handler: handler
# The entry point for the function.
entry: dist/src/index.js