Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 690 Bytes

README.md

File metadata and controls

51 lines (35 loc) · 690 Bytes

Fullstack niivue demo App

🚧 This is a work in progress 🚧

set up environments and install dependencies

Requirements:

  • Node.js (for frontend environment)
  • npm (for frontend environment)
  • pixi (for backend environment)
  • git

frontend

cd frontend
npm install

backend

cd backend
pixi install

run the frontend in development mode

cd frontend
npm run dev

run the backend in development mode

This hot reloads the backend when changes are made to the code.

Note: the frontend will be "static" in this mode.

cd backend
pixi run dev

build the frontend for production

cd frontend
npm run build