-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildspec.yml
More file actions
40 lines (36 loc) · 744 Bytes
/
buildspec.yml
File metadata and controls
40 lines (36 loc) · 744 Bytes
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
version: 0.2
phases:
install:
runtime-versions:
nodejs: 18
commands:
# install npm
- npm install
build:
commands:
# run build script
- npm build
artifacts:
# include all files required to run application
# notably excluded is node_modules, as this will cause overwrite error on deploy
files:
- assets/**/*
- components/**/*
- containers/**/*
- pages/**/*
- public/**/*
- lib/**/*
- prisma/**/*
- scripts/**/*
- settings/**/*
- styles/**/*
- jsconfig.json
- package.json
- .eslintrc.json
- components.json
- next-env.d.ts
- next.config.js
- appspec.yml
- postcss.config.js
- tailwind.config.js
- tsconfig.json