-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: include commit hashes in footer (#188)
- Loading branch information
Showing
4 changed files
with
20 additions
and
8 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 |
---|---|---|
|
@@ -39,10 +39,6 @@ dist | |
|
||
## .dockerignore ## | ||
|
||
# git | ||
.git/ | ||
.gitignore | ||
|
||
# github | ||
.github/ | ||
|
||
|
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 |
---|---|---|
|
@@ -10,9 +10,9 @@ | |
"packageManager": "[email protected]+sha256.355a8ab8dbb6ad41befbef39bc4fd6b5df85e12761d2724bd01f13e878de4b13", | ||
"scripts": { | ||
"analyze": "nuxt analyze", | ||
"build": "run-s generate:api-client build:client", | ||
"build": "NUXT_PUBLIC_CURRENT_GIT_SHA=$(git describe --tags --always) && run-s generate:api-client build:client", | ||
"build:client": "nuxt build --dotenv ./.env.local", | ||
"dev": "nuxt dev --dotenv ./.env.local --host 127.0.0.1 --no-fork", | ||
"dev": "NUXT_PUBLIC_CURRENT_GIT_SHA=$(git describe --tags --always) && nuxt dev --dotenv ./.env.local --host 127.0.0.1 --no-fork", | ||
"format:check": "prettier . --cache --check --ignore-path ./.gitignore", | ||
"format:fix": "pnpm run format:check --write", | ||
"generate:api-client": "swagger-typescript-api --path \"https://raw.githubusercontent.com/acdh-oeaw/vicav-app-api/master/openapi.json\" --clean-output --name index.ts --output ./lib/api-client/", | ||
|
@@ -27,7 +27,7 @@ | |
"prepare": "run-s setup generate:api-client", | ||
"setup": "is-ci || simple-git-hooks", | ||
"start:preview": "nuxt preview --dotenv ./.env.local", | ||
"start": "node .output/server/index.mjs", | ||
"start": "NUXT_PUBLIC_CURRENT_GIT_SHA=$(git rev-parse HEAD) && node .output/server/index.mjs", | ||
"start:local": "dotenv -e .env.local -- pnpm run start", | ||
"test": "dotenv -e .env.local -- node checkenv.mjs && pnpm playwright install && pnpm validate", | ||
"test:e2e": "playwright test", | ||
|