No description
Find a file
ThetaDev d0cde9f3d8
All checks were successful
Visitenbuch CI / test (push) Successful in 1m38s
Visitenbuch CI / release (push) Successful in 5m55s
chore(release): release v0.3.1
2024-05-13 13:10:52 +02:00
.forgejo/workflows test: fix environment files 2024-05-13 13:01:00 +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: logout user from OIDC provider 2024-05-13 04:17:48 +02:00
static add icon 2024-05-12 14:46:18 +02:00
tests feat: add multi-column sort 2024-05-10 15:20:04 +02:00
.dockerignore build: remove docker multistage build, add entrypoint 2024-05-05 04:30: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 test: fix environment files 2024-05-13 13:01:00 +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.1 2024-05-13 13:10:52 +02:00
cliff.toml chore: add git-cliff 2024-05-07 00:54:45 +02:00
Dockerfile fix: dockerfile 2024-05-12 16:03:17 +02:00
eslint.config.js fix: add tooltips to icon buttons 2024-05-12 15:13:31 +02:00
LICENSE Initial commit 2023-11-01 17:42:03 +01:00
package.json chore(release): release v0.3.1 2024-05-13 13:10:52 +02:00
playwright.config.js fix: use qs for URL query strings 2024-04-21 18:03:30 +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.js feat: add about page, licenses 2024-05-07 00:39:38 +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