No description
Find a file
ThetaDev b696ee8894
All checks were successful
Visitenbuch CI / test (push) Successful in 2m33s
Visitenbuch CI / release (push) Successful in 6m11s
chore(release): release v0.3.5
2024-05-20 15:11:32 +02:00
.forgejo/workflows fix: avoid global state, use context for savedFilters 2024-05-16 17:29:22 +02:00
.vscode fix: add generic item type to Autocomplete 2024-04-05 00:35:07 +02:00
prisma fix!: ensure category, room and station names are unique 2024-05-18 16:35:42 +02:00
run fix: add dumb-init to docker image 2024-05-19 15:45:21 +02:00
src fix: remove test route 2024-05-19 23:37:33 +02:00
static add icon 2024-05-12 14:46:18 +02:00
tests test: use fixtures for E2E tests, fix wrong OIDC URL in CI 2024-05-14 15:33:57 +02:00
.dockerignore ci: upload E2E report 2024-05-14 14:28:02 +02:00
.editorconfig feat: add db queries for Entry 2024-01-11 23:53:42 +01:00
.env.example test: fix environment files 2024-05-13 13:01:00 +02:00
.env.test test: fix environment files 2024-05-13 13:01:00 +02:00
.gitignore ci: upload E2E report 2024-05-14 14:28:02 +02:00
.npmrc Initial commit 2023-11-01 17:42:03 +01:00
.pre-commit-config.yaml ci: retry 2024-05-14 14:17:47 +02:00
CHANGELOG.md chore(release): release v0.3.5 2024-05-20 15:11:32 +02:00
cliff.toml chore: add git-cliff 2024-05-07 00:54:45 +02:00
Dockerfile fix: add dumb-init to docker image 2024-05-19 15:45:21 +02:00
eslint.config.js fix: update ESLint config and fix lints 2024-05-13 23:33:35 +02:00
LICENSE Initial commit 2023-11-01 17:42:03 +01:00
package.json chore(release): release v0.3.5 2024-05-20 15:11:32 +02:00
playwright.config.js test: use fixtures for E2E tests, fix wrong OIDC URL in CI 2024-05-14 15:33:57 +02:00
pnpm-lock.yaml chore: remove unused zod-form-data dependency 2024-05-18 19:10:17 +02:00
postcss.config.cjs chore: add postcss plugins 2023-12-21 00:36:04 +01:00
README.md chore: update README 2024-05-12 23:42:00 +02:00
release.sh chore: update README 2024-05-12 23:42:00 +02:00
svelte.config.js chore: update dependencies 2024-04-04 17:06:47 +02:00
tailwind.config.cjs fix: light/dark theme 2024-05-05 16:47:18 +02:00
tsconfig.json chore: update eslint to new flat config format 2024-04-18 23:18:18 +02:00
vite.config.ts fix: escape HTML for licenses file 2024-05-14 16:28:23 +02:00
vitest.config.integration.js ci: retry 2024-05-14 14:17:47 +02:00

Visitenbuch

for the university hospital in Augsburg

Development

The project template was created using create-svelte.

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Handle the prisma ORM

./run/db_up.sh # Start the docker container, create a new database and run migrations + insert test data
npx prisma migrate dev --name my_migration --create-only # Create a new migration
npx prisma migrate dev # Apply migrations to the database

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.

Release

To release a new version, tun the release script with the new version as a parameter

./release.sh 1.0.0