https://github.com/beautiful-code/interview-portal-backend
https://github.com/beautiful-code/interview-portal-backend
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/beautiful-code/interview-portal-backend
- Owner: beautiful-code
- License: mit
- Created: 2020-01-03T06:57:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T11:27:21.000Z (over 3 years ago)
- Last Synced: 2025-03-02T17:15:30.516Z (over 1 year ago)
- Language: JavaScript
- Size: 855 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Getting Started
```sh
# clone it
git clone https://github.com/KarrthikReddyChinasani/bc-hack.git
cd bc-hack
# Make it your own
rm -rf .git && git init && npm init
# Install dependencies
npm install
# Start development live-reload server
PORT=8080 npm run dev
# Start production server:
PORT=8080 npm start
```
## Docker Support
```sh
cd bc-hack
# Build your docker
docker build -t ba-hack/latest .
# ^ ^ ^
# tag tag name Dockerfile location
# run your docker
docker run -p 8080:8080 ba-hack/latest
# ^ ^
# bind the port container tag
# to your host
# machine port
```
## License
MIT