forked from digitalbiblesociety/dbp-reader
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuildspec.yml
More file actions
43 lines (43 loc) · 945 Bytes
/
buildspec.yml
File metadata and controls
43 lines (43 loc) · 945 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
41
42
43
version: 0.2
env:
exported-variables:
- DBP_API_KEY
- BASE_API_ROUTE
- BUGSNAG_API_KEY
phases:
install:
runtime-versions:
nodejs: 22
commands:
- npm install
pre_build:
commands:
- npm run lint
build:
commands:
- npm run build
artifacts:
files:
- .next/**/*
- public/**/*
- internals/scripts/**/*
- scripts/**/*
- nextServer.js
- ecosystem.config.js
- package.json
- next.config.js
- appspec.yml
- .gitignore
- node_modules/**/*
- app/utils/checkBookName.js
- app/utils/bugsnagServer.js
- app/utils/isoOneToThree.json
- app/utils/bookNameToId.json
- app/utils/osisIdMap.json
- app/utils/parseM3U8.js
- app/utils/serverCachedFetch.js
- app/utils/apiEndpointConfig.js
- app/utils/retryableRequest.js
- app/utils/environmentConfig.js
discard-paths: no
name: 'BibleIsWebsite-$CODEBUILD_BUILD_NUMBER'