-
- Downloads
Merge branch '1_basic_docker_stack' into 'main'
Basic docker stack to build and serve Mirador See merge request iiif/POC-mirador!2
No related branches found
No related tags found
Showing
- .env.template 4 additions, 0 deletions.env.template
- .gitignore 1 addition, 0 deletions.gitignore
- Caddyfile 4 additions, 0 deletionsCaddyfile
- Dockerfile 10 additions, 0 deletionsDockerfile
- README.md 2 additions, 27 deletionsREADME.md
- docker-compose.yml 9 additions, 0 deletionsdocker-compose.yml
- package.json 5 additions, 3 deletionspackage.json
- public/index.html 2 additions, 2 deletionspublic/index.html
- webpack.config.js 2 additions, 2 deletionswebpack.config.js
.env.template
0 → 100644
Caddyfile
0 → 100644
Dockerfile
0 → 100644
docker-compose.yml
0 → 100644
... | @@ -4,8 +4,8 @@ | ... | @@ -4,8 +4,8 @@ |
"description": "", | "description": "", | ||
"private": true, | "private": true, | ||
"scripts": { | "scripts": { | ||
"webpack": "webpack --config webpack/webpack.config.js", | "build": "webpack --config webpack.config.js", | ||
"test": "echo \"Error: no test specified\" && exit 1" | "serve": "webpack serve --config webpack.config.js" | ||
}, | }, | ||
"author": "", | "author": "", | ||
"license": "ISC", | "license": "ISC", | ||
... | @@ -14,7 +14,9 @@ | ... | @@ -14,7 +14,9 @@ |
"mirador": "git+https://gitlab.tetras-libre.fr/iiif/mirador-video-annotation#wip-webpack-from-git", | "mirador": "git+https://gitlab.tetras-libre.fr/iiif/mirador-video-annotation#wip-webpack-from-git", | ||
"react": "^16.13.1", | "react": "^16.13.1", | ||
"react-dom": "^16.13.1", | "react-dom": "^16.13.1", | ||
"style-loader": "^1.2.1", | "style-loader": "^1.2.1" | ||
}, | |||
"devDependencies": { | |||
"webpack": "^4.43.0", | "webpack": "^4.43.0", | ||
"webpack-cli": "^4.3.12" | "webpack-cli": "^4.3.12" | ||
} | } | ||
... | ... |
Please register or sign in to comment