No description
Find a file
Wroclaw 54907d6eec
All checks were successful
Build dev / build (push) Successful in 1m14s
components/navigation/navigation: actually watch for route changes
the useRoute() did not return ref,
so the previous implementation did not work
2023-12-21 03:39:47 +01:00
.forgejo/workflows Workflow: rename the artifact with a better name 2023-11-09 02:43:24 +01:00
.vscode Initial commit 2023-05-11 06:03:22 +02:00
components components/navigation/navigation: actually watch for route changes 2023-12-21 03:39:47 +01:00
layouts Initial commit 2023-05-11 06:03:22 +02:00
middleware Add database initialization 2023-06-14 13:00:19 +02:00
pages pages/login: await when "updating" user info for the first time 2023-12-20 06:03:56 +01:00
plugins Reconfigure Vuetify to be installed as Vuetify doc states 2023-11-09 00:45:37 +01:00
public Initial commit 2023-05-11 06:03:22 +02:00
server server/utils/database: ensure that database engines exists. 2023-12-20 04:01:04 +01:00
utils Replace mysql2 with prisma 2023-11-08 05:36:12 +01:00
.eslintrc.json Initial commit 2023-05-11 06:03:22 +02:00
.gitignore Initial commit 2023-05-11 06:03:22 +02:00
.npmrc Initial commit 2023-05-11 06:03:22 +02:00
.vsls.json Initial commit 2023-05-11 06:03:22 +02:00
app.vue Initial commit 2023-05-11 06:03:22 +02:00
nuxt.config.ts Reconfigure Vuetify to be installed as Vuetify doc states 2023-11-09 00:45:37 +01:00
package-lock.json Update dependencies 2023-12-20 05:26:19 +01:00
package.json Update dependencies 2023-12-20 05:26:19 +01:00
README.md README: Precise a description of running of a project. 2023-11-09 04:43:54 +01:00
schema.prisma [BREAKING] Auth: replace current auth tokens with more secure ones 2023-11-09 18:28:09 +01:00
shell.nix Update dependencies 2023-12-20 05:26:19 +01:00
tsconfig.json Initial commit 2023-05-11 06:03:22 +02:00

WorkshopTasker

Allows for managing order tasks and imported products for a small workshop.

A college database project

Running

The project was tested with the nodejs version v18.17.1. It may not work with versions higher than 18 of nodejs.

Project uses Oracle MySQL as a database store. It uses environment variables for the connection settings. All provided variables below are required.

Environment variable Description
DB_URL Database url, see this

From Repository

Dev dependencies are required. npm install -D.

After setting variables, you can run the project using npx nuxi dev. You can also setup variables by placing .env file in the root of the repository.

When using nix, you can use nix-shell to get prisma engines installed in your environment.

From Actions

You can download build from repository actions.

You need to extract tar file. After setting environment variables, you can launch the project using the node server/index.mjs command.