Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Documentive/TemplateBuddy
An Open Source resume builder for hassle free experience
https://github.com/Documentive/TemplateBuddy
Last synced: 3 months ago
JSON representation
An Open Source resume builder for hassle free experience
- Host: GitHub
- URL: https://github.com/Documentive/TemplateBuddy
- Owner: Documentive
- Created: 2023-04-09T19:08:02.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-31T16:54:12.000Z (over 1 year ago)
- Last Synced: 2024-04-24T17:26:46.023Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 3.5 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Template Buddy
An open source resume builder for hassle free experience.
## Installation
### Pre-requisites
- MongoDB
- NodeJS >= v16.0.0
- MongoDB Compass (optional, to view the database)
- Postman (optional, to test the API)### Steps
#### For macOS:
1. Start Mongo daemon:```bash
user@programmer~:$ mongod --config
```2. Start the backend server:
```bash
user@programmer~:$ cd backend
user@programmer~:$ npm start
```3. Start the frontend:
```bash
user@programmer~:$ cd frontend
user@programmer~:$ npm start
```#### For Windows (Use CMD Prompt in Administrator mode) :
1. Start Mongo daemon:
```bash
user@programmer~:$ /bin/mongod.exe --dbpath=
```
2. Start the backend server:```bash
user@programmer~:$ cd backend
user@programmer~:$ npm start
```3. Start the frontend:
```bash
user@programmer~:$ cd frontend
user@programmer~:$ npm start
```