No description
Find a file
ThetaDev 1de0cf7d59
All checks were successful
Visitenbuch CI / test (push) Successful in 6s
Visitenbuch CI / release (push) Has been skipped
ci: fixed oidc-mock image
2024-05-14 03:56:04 +02:00
.forgejo/workflows ci: fixed oidc-mock image 2024-05-14 03:56:04 +02:00
.vscode fix: add generic item type to Autocomplete 2024-04-05 00:35:07 +02:00
prisma feat: create executions without marking entry as done ('notes') 2024-05-10 13:51:55 +02:00
run test: fix environment files 2024-05-13 13:01:00 +02:00
src feat: make page printable 2024-05-14 02:13:44 +02:00
static add icon 2024-05-12 14:46:18 +02:00
tests feat: add E2E testing 2024-05-14 00:40:10 +02:00
.dockerignore fix: update ESLint config and fix lints 2024-05-13 23:33:35 +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 fix: update ESLint config and fix lints 2024-05-13 23:33:35 +02:00
.npmrc Initial commit 2023-11-01 17:42:03 +01:00
.pre-commit-config.yaml chore: pre-commit: deny eslint warnings 2024-05-12 15:17:09 +02:00
CHANGELOG.md chore(release): release v0.3.2 2024-05-13 14:08:56 +02:00
cliff.toml chore: add git-cliff 2024-05-07 00:54:45 +02:00
Dockerfile fix: disable NPM update notifier 2024-05-13 14:05:39 +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 fix: update ESLint config and fix lints 2024-05-13 23:33:35 +02:00
playwright.config.js feat: add E2E testing 2024-05-14 00:40:10 +02:00
pnpm-lock.yaml chore: update dependencies 2024-05-12 15:21:02 +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: update ESLint config and fix lints 2024-05-13 23:33:35 +02:00
vitest.config.integration.js test: make test db URL configurable 2024-05-12 22:38:58 +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