https://github.com/tanish-sr/smartbrain-api
this is the the backend of the SmartBrain project ---> you can view the app in the below link 👇
https://github.com/tanish-sr/smartbrain-api
database deployment full-stack javascript postgresql reactjs
Last synced: 3 months ago
JSON representation
this is the the backend of the SmartBrain project ---> you can view the app in the below link 👇
- Host: GitHub
- URL: https://github.com/tanish-sr/smartbrain-api
- Owner: Tanish-SR
- Created: 2024-09-16T13:56:43.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-17T11:48:27.000Z (over 1 year ago)
- Last Synced: 2024-11-21T23:59:57.793Z (over 1 year ago)
- Topics: database, deployment, full-stack, javascript, postgresql, reactjs
- Language: JavaScript
- Homepage: https://smartbrain-435m.onrender.com/
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SmartBrain - Backend/API
1. Clone this repo
2. Run npm install
3. Run start
4. You must create a .env file and add your PAT key, user_id, app_id
5. set up Database by creating a database called smart-brain
6. make 2 tables called users, login
- run this in your postgres sql: CREATE TABLE users (id PRIMARY KEY SERIAL, name VARCHAR(100), email VARCHAR(255), entries number, joined DATE);
- run this in your postgres sql: CREATE TABLE login (id PRIMARY KEY SERIAL, hash VARCHAR(255), email VARCHAR(255));