softylines-webschool-v1
v1.0.2
Published
The architecture for nodejs backend application. It is build on top of expressjs using typescript.
Readme
IECD Backend v1
A Node.js backend application built with Express.js and TypeScript.
Development Installation
Prerequisites
- Node.js (v18 or higher)
- npm
- MongoDB (local or cloud instance)
Setup
Clone the repository
git clone <repository-url> cd iecd-backend-v1Install dependencies
npm installEnvironment Configuration
cp example.env .envEdit the
.envfile with your configuration values:- Update database connection strings
- Set JWT secrets
- Configure email settings
- Add other required environment variables
Start development server
npm run dev
The application will start on http://localhost:3000 (or the port specified in your .env file).
Available Scripts
npm run dev- Start development server with hot reload
