https://github.com/skywalkersam/face-detection-backend
Server for the face-detection demo projects.
https://github.com/skywalkersam/face-detection-backend
backend backend-api bcrypt clarifai-api express-js face-recognition getting-started hacktoberfest-accepted knexjs nodejs postgresql render-deployment
Last synced: 8 days ago
JSON representation
Server for the face-detection demo projects.
- Host: GitHub
- URL: https://github.com/skywalkersam/face-detection-backend
- Owner: skywalkerSam
- Created: 2024-02-08T16:30:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T09:29:30.000Z (almost 2 years ago)
- Last Synced: 2025-01-06T17:49:23.812Z (about 1 year ago)
- Topics: backend, backend-api, bcrypt, clarifai-api, express-js, face-recognition, getting-started, hacktoberfest-accepted, knexjs, nodejs, postgresql, render-deployment
- Language: JavaScript
- Homepage: https://face-detection-backend-one.onrender.com/
- Size: 233 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Backend server for [face-detection](https://github.com/skywalkerSam/face-detection)
### GitHub: [face-detection-backend](https://github.com/skywalkerSam/face-detection-backend)
### API Deployment: [On Render](https://face-detection-backend-one.onrender.com)
- Using `gRPC`
- Using Environment Variables!
- The default value of `PORT` is `10000` for all [Render](https://render.com/) web services.
## Please Specify the following...
- `process.env.PORT`
- `process.env.PAT`
- `process.env.USER_ID`
## For `bash` shells
```shell
PAT=enteryourpat USER_ID=yourusername node server.js
```
## Technical Details...
- Express.js
- bcrypt
- postgreSQL
- Knex.js
## Tools Used
- DBeaver
- Postman
- VS Code
## Using nodemon, put this under `"scripts"` in package.json
```json
"start": "nodemon server.js"
```
## Install nodemon
```shell
npm i nodemon
```
## Start the server
```shell
npm start
```
## I'm exhausted by writing this command for deployment everytime...
```bash
git pull ; git status ; git add . ; git commit -m "Deployment" ; git push origin main ; git status
```
## Until next time...
# ;)