fitnestcorp / frontend

https://fitnest.online
0 stars 1 forks source link
e-commerce nextjs web

Fitnest: Web Frontend

NextJS CI

This repo hosts all the files for the Fitnest online store made with NextJS 14 and deployed to Vercel

Local Development

For local development, it's necessary to run the backend and its dependencies including the PostgreSQL 16 DB.

You can then run the development server using:

# install dependencies
npm install

# start dev server
npm run dev

which will create the NextJS dev server on port 4000 with hot reloading from source included!

Production

This project was deployed to vercel for ease, however, any [node.js]() environment will suffice, even a Docker one.

# install production dependencies
npm ci

# build the project
npm run build

# start production server
npm run start

ROADMAP