https://github.com/toheeb-ojuolape/privasee-ai
An AI-powered project that enables companies and individuals to add questions and generate responses
https://github.com/toheeb-ojuolape/privasee-ai
Last synced: 3 months ago
JSON representation
An AI-powered project that enables companies and individuals to add questions and generate responses
- Host: GitHub
- URL: https://github.com/toheeb-ojuolape/privasee-ai
- Owner: Toheeb-Ojuolape
- Created: 2025-02-05T00:40:01.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-05T02:15:21.000Z (4 months ago)
- Last Synced: 2025-02-05T03:20:21.556Z (4 months ago)
- Language: TypeScript
- Size: 319 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Documentation for Privasee AI
Video demo of the application:
https://www.loom.com/share/35bd455b0713407b9074d4bdf24df4d4?sid=6cce7d8d-e260-4f67-8b3b-22e276f2a8bb
## Deployment & Packaging
The project is available for setup using Docker or using npm
## Starting both services using Docker
**NOTE:** Please make sure to set the API_URL value for the frontend to be "http://backend:4000" when using docker to start both services
```
git clone https://github.com/Toheeb-Ojuolape/privasee-ai.git
docker-compose up --build```
## For Frontend
**NOTE:** Please make sure to create and populate the .env file before trying to run the project
### Using Docker```
git clone https://github.com/Toheeb-Ojuolape/privasee-ai.git
cd privasee-app
docker-compose up --build```
### Using npm
```
git clone https://github.com/Toheeb-Ojuolape/privasee-ai.git
cd privasee-app
npm i
npm run dev```
## For Backend
**NOTE:** Please make sure to create and populate the .env file before trying to run the project
### Using npm
```
git clone https://github.com/Toheeb-Ojuolape/privasee-ai.git
cd privasee-api
npm install
npm run start```
### Using Docker for Backend
```
git clone https://github.com/Toheeb-Ojuolape/privasee-ai.git
cd privasee-api
docker-compose up --build```
## Note
For best experience deploying, I would recommend running the backend first on docker, then running the frontend using npm