Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 560 Bytes

File metadata and controls

62 lines (42 loc) · 560 Bytes

centrale-ei-web

Backend

Project setup

cd backend
npm install
cp .env.example .env

Run database migrations

npm run migration:run

Start and auto-reload for development

npm run dev

Start for production

npm run start

Lint and fix files

npm run lint

Frontend

Project setup

cd frontend
npm install

Compile and hot-reload for development

npm run dev

Compile and minifiy for production

npm run build

Lint and fix files

npm run lint