-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1 KB
/
package.json
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
{
"name": "dcs-docker",
"version": "1.0.0",
"description": "Scripts for running & maintaing a local copy of DCS",
"main": "start.js",
"scripts": {
"setup": "git submodule update --init --recursive",
"start": "npm run setup && cd profiles/$npm_config_profile && cp ../docker-compose.yaml . && docker-compose -p dcs-$npm_config_profile up",
"blank": "npm start --profile=blank",
"unfoldingword-mirrored": "npm start --profile=unfoldingword-mirrored",
"unfoldingword": "npm start --profile=unfoldingword",
"migrate": "cd migrator && MIRROR=0 ./run-local.sh",
"mirror": "cd migrator && MIRROR=1 ./run-local.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfoldingWord-dev/dcs-docker.git"
},
"keywords": [
"dcs",
"gitea",
"docker"
],
"author": "Richard Mahn",
"license": "ISC",
"bugs": {
"url": "https://github.com/unfoldingWord-dev/dcs-docker/issues"
},
"homepage": "https://github.com/unfoldingWord-dev/dcs-docker#readme"
}