/frontend
npm run dev
/server
npm start
Setup a postgresSQL server and update the server config in app.js
example config
const cn = {
host: "localhost",
port: 5432,
database: "typeski",
user: "postgres",
password: "postgres",
max: 30, // use up to 30 connections
};
Stack: Vue.js Express Node.js PostgreSQL Vite