Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 413 Bytes

README.md

File metadata and controls

42 lines (31 loc) · 413 Bytes

Installation

Setup mysql server and phpmyadmin containers

cp config.example config
./docker-setup.sh

Server

Install npm package and setup env file

cd server/
npm install
cp .env.example .env

Run Migrations

npm run dev-migrate

Client

cd client/
npm install

Start server and client

cd server/
npm run dev

cd client/
npx vite