Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 7 hours 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T07:01:23.000Z (about 2 years ago)
- Last Synced: 2024-11-12T21:41:05.374Z (2 months 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
```