-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added step "Check Production Build Correctness" to test pipeline; add…
…ed docker-compose.local.yml + .dockerignore to test locally production deployment; fixed pre-commit hook; re-organized dependencies to ensure that only production dependencies are install during deployment; disabled linting in Next in order to restrict ESLint dependencies to dev build (linting should be performed during testing and other checks, not during deployment)
- Loading branch information
1 parent
d841302
commit a09881b
Showing
9 changed files
with
487 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Various IDEs | ||
.idea/ | ||
.vscode/ | ||
*.iml | ||
*.idea | ||
*.vs | ||
|
||
# Git and version control | ||
.git/ | ||
.gitignore | ||
|
||
# Docker override files | ||
docker-compose.local.yml | ||
docker-compose.override.yaml | ||
|
||
# Environment files | ||
.env.local | ||
.env.local.dist | ||
.env.* | ||
|
||
# Dependency directories | ||
**/node_modules/ | ||
**/bower_components/ | ||
|
||
# Log files | ||
logs/ | ||
*.log | ||
|
||
# Compiled output | ||
/dist | ||
/tmp | ||
/out | ||
/target | ||
/build | ||
|
||
# Others | ||
**/README.md | ||
**/LICENSE | ||
**/CODE_OF_CONDUCT.md | ||
**/SECURITY.md | ||
**/START.md | ||
*.md | ||
|
||
# Operating system files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Test directories and libs | ||
__tests__/ | ||
coverage/ | ||
jest* | ||
|
||
# CI/CD | ||
.github/ | ||
.gitlab-ci.yml | ||
.travis.yml | ||
.husky | ||
|
||
# Documentation | ||
docs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
version: "3.5" | ||
|
||
networks: | ||
iced-latte-network: | ||
name: iced-latte-network | ||
attachable: true | ||
|
||
services: | ||
iced-latte-frontend: | ||
image: 'zufarexplainedit/iced-latte-frontend:latest' | ||
container_name: iced-latte-frontend | ||
environment: | ||
- .env | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
restart: 'always' | ||
ports: | ||
- '3000:3000' | ||
networks: | ||
- iced-latte-network |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.