Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cancelei/chat-interviewer-rails-app
Built for showcasing a chat bot that uses OpenAI's API to gather specific information on candidates.
https://github.com/cancelei/chat-interviewer-rails-app
Last synced: 18 days ago
JSON representation
Built for showcasing a chat bot that uses OpenAI's API to gather specific information on candidates.
- Host: GitHub
- URL: https://github.com/cancelei/chat-interviewer-rails-app
- Owner: cancelei
- Created: 2024-06-08T00:33:13.000Z (5 months ago)
- Default Branch: dev
- Last Pushed: 2024-06-14T13:07:32.000Z (5 months ago)
- Last Synced: 2024-10-10T08:42:15.861Z (about 1 month ago)
- Language: Ruby
- Size: 68.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
To start the project like you would do in any new rails app.
`bundle install`
Set up .env file with the following:
```
OPENAI_API_KEY=your_openai_api_key
DB_USERNAME=your_db_username
DB_PASSWORD=your_db_password
DB_HOST=your_db_host
````rails db:create`
`rails db:migrate`
`redis-server`
`rails s`
Test's were skipped in this project.
Also consider using redis-server for background jobs with good_job gem.