https://github.com/roshan-raj/trainee-management-system
MERN Stack Application | Live Demo Here =>
https://github.com/roshan-raj/trainee-management-system
bcry express jwt mongo nodejs passport react
Last synced: 3 months ago
JSON representation
MERN Stack Application | Live Demo Here =>
- Host: GitHub
- URL: https://github.com/roshan-raj/trainee-management-system
- Owner: roshan-raj
- Created: 2019-11-05T14:55:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T07:01:23.000Z (over 3 years ago)
- Last Synced: 2025-01-11T23:12:41.129Z (over 1 year ago)
- Topics: bcry, express, jwt, mongo, nodejs, passport, react
- Language: JavaScript
- Homepage: https://morning-atoll-52308.herokuapp.com/
- Size: 1.22 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Configuration
Make sure to add your own `MONGOURI` from your database in `config/keys.js`.
```javascript
module.exports = {
mongoURI: "YOUR_MONGO_URI_HERE",
secretOrKey: "secret"
};
```
## Quick Start
```javascript
// Install dependencies for server & client
npm install
// Run client & server with concurrently
npm run dev
// Server runs on http://localhost:5000 and client on http://localhost:3000
```