https://github.com/banrovegrie/openings
App that serves as a Job Application Portal
https://github.com/banrovegrie/openings
Last synced: about 2 months ago
JSON representation
App that serves as a Job Application Portal
- Host: GitHub
- URL: https://github.com/banrovegrie/openings
- Owner: banrovegrie
- License: mit
- Created: 2021-01-11T14:42:59.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-31T22:03:08.000Z (over 3 years ago)
- Last Synced: 2025-01-18T11:44:24.861Z (3 months ago)
- Language: JavaScript
- Size: 1.08 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Openings
App that serves as a Job Application Portal with required functionalities available for both Recruiter and Applicant.## Installing
### Backend
Install modules required for backend REST API
```bash
cd backend/
npm install```
Fill details required in `sample.env` and change its name to `.env`
```bash
mv sample.env .env
```
Run backend code
```bash
npm start
```
### Frontend
Install required modules for frontend
```bash
cd frontend/
npm install```
Run frontend code
```bash
npm start
```