Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
03022be
chore: add web app snapshot for deploy
IBERMOLINA Sep 21, 2025
169e2d4
build(web): docker-friendly standalone output and tsconfig cleanup
IBERMOLINA Sep 21, 2025
3080866
chore(web): Dockerfile uses Next standalone; add .dockerignore
IBERMOLINA Sep 21, 2025
7bdfab8
chore(ci): trigger docker smoke workflow
IBERMOLINA Sep 21, 2025
3adc898
fix(build): mark subproject as dirty in LifeMtrics-buildsetup
IBERMOLINA Sep 21, 2025
88b4c88
feat: add KeylessCreatorOrReader component for handling keyless actio…
IBERMOLINA Sep 21, 2025
3fea923
Add webpack and Tailwind CSS output files for improved styling and fu…
IBERMOLINA Sep 21, 2025
9e36c12
chore: update build artifacts and configuration files
IBERMOLINA Sep 21, 2025
860b6ee
chore: update LifeMtrics-buildsetup submodule pointer
IBERMOLINA Sep 21, 2025
bd601a0
ci: extend docker smoke test to build Next.js app and Docker image
IBERMOLINA Sep 21, 2025
4824352
fix(build): mark subproject as dirty in LifeMtrics-buildsetup
IBERMOLINA Sep 21, 2025
326dfcd
feat(test): set up Jest and React Testing Library for Next.js app
IBERMOLINA Sep 21, 2025
6b9c921
feat(devcontainer): optimize for remote codespace with Node 20 and Do…
IBERMOLINA Sep 21, 2025
650df16
feat(devcontainer): add postCreateCommand for nvm setup and npm install
IBERMOLINA Sep 21, 2025
d5b5347
feat(tests): add Jest configuration and setup files for testing
IBERMOLINA Sep 21, 2025
45b5d4d
Implement code changes to enhance functionality and improve performance
IBERMOLINA Sep 21, 2025
2eb4855
fix(ci): use multiline run commands in workflow for shellcheck compli…
IBERMOLINA Sep 21, 2025
fc38223
fix(devcontainer): use array for postCreateCommand to improve shell i…
IBERMOLINA Sep 21, 2025
ac17916
feat(dashboard): add live update component with real-time clock for e…
IBERMOLINA Sep 21, 2025
997a339
docs(web): add MIT LICENSE.md for the web app
IBERMOLINA Sep 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 24 additions & 8 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,31 @@
{
"name": "VS Code Docs",
"dockerFile": "Dockerfile",
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "20"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"extensions": [
"yzhang.markdown-all-in-one",
"streetsidesoftware.code-spell-checker",
"DavidAnson.vscode-markdownlint",
"bierner.github-markdown-preview",
"github.vscode-pull-request-github"
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
},
"extensions": [
"yzhang.markdown-all-in-one",
"streetsidesoftware.code-spell-checker",
"DavidAnson.vscode-markdownlint",
"bierner.github-markdown-preview",
"github.vscode-pull-request-github"
]
}
},
"postCreateCommand": [
"export NVM_DIR=\"$HOME/.nvm\"",
"[ -s \"$NVM_DIR/nvm.sh\" ] && \\. \"$NVM_DIR/nvm.sh\"",
"nvm use 20",
"cd web && npm ci"
],
"remoteUser": "vscode"
}
Loading
Loading