Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 372 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 372 Bytes

Vite/NextUI and Express/SQLite3/Sequelize (ViNESS) Full Stack Template

Install dependencies

npm install
# or
yarn install

Run raw

npm run build && npm run start
# or
yarn build && yarn start

Run with Docker

docker build -t viness .
docker run -p 3000:3000 -p 5000:5000 viness

Develop

npm run dev
# or
yarn dev