Skip to content

jaiswalism/codepvp

 
 

Repository files navigation

CodePVP

Project Structure

.
├── backend/ # Node.js + Express backend
├── frontend/ # React + TypeScript + Vite frontend
├── .gitignore
└── README.md

Setup

Install dependencies

# Root
npm install

# Backend
cd backend && npm install

Environment Variables

Copy the .env.example file in the backend/ directory to .env:

cp backend/.env.example backend/.env

Then update the values as needed for your local setup.

Development

npm run dev

Defaults

Scripts

Command Description
npm run dev Runs both frontend and backend concurrently
npm run build Builds frontend for production
npm run dev:frontend Runs only the frontend in development mode
npm run dev:backend Runs only the backend in development mode (from root)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 84.3%
  • JavaScript 14.0%
  • CSS 1.1%
  • Other 0.6%