Skip to content
Snippets Groups Projects
Renovate Bot's avatar
Renovate Bot authored
chore(deps): update dependency vite to v5.4.19 [security]

See merge request !372
d2e34fb6
History

Anordnungs-Generator

Web-Tool für Finanz-Menschen des FSRs Informatik an der TU Dortmund.

Screenshots

Anordnungen erstellen und bearbeiten:

Verfügbare Beschlussliste durchsuchen:

Vorausgefüllte Anordnungen als PDF exportieren:

Developing

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

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

Deployment

The suggested way to deploy this is using Docker.

docker build --tag 'anordnungs-generator:latest' .

You can then run it with

docker run --rm -it --init -p 3000:3000 "anordnungs-generator:latest"
# The --init is needed so this container respects Ctrl+C.

Optionally, set the env vars

PUBLIC_URL_PRIVACY=""
PUBLIC_URL_IMPRINT=""

to get usable legal links in the apps' footer.