https://github.com/phawk/rapid_ai_agents
https://github.com/phawk/rapid_ai_agents
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/phawk/rapid_ai_agents
- Owner: phawk
- License: mit
- Created: 2024-12-07T17:06:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-08T09:09:15.000Z (over 1 year ago)
- Last Synced: 2024-12-28T06:15:14.935Z (over 1 year ago)
- Language: Ruby
- Size: 1.03 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# RapidRuby.com AI Agents
### Core features
- Rails 8
- Hotwire using esbuild
- Tailwind CSS
- User authentication with authentication-zero
- ViewComponent
- RSpec
### Creating a fresh app
The below is customised to my workflow, you may want to skip/tweak a few of the steps. Requires `brew install gh` to create the new repository.
```sh
# Setup commands
cd ~/Sites/youtube
git clone git@github.com:phawk/rapid-ruby-starter.git new_project_name
cd new_project_name
code .
bundle install
yarn install
git remote rm origin
gh repo create rapid_ai_agents --public --source=.
git push origin main -u
bin/rails db:system:change --to=postgresql # optional
bin/rails db:create
bin/rails db:migrate && bin/rails db:migrate RAILS_ENV=test
# Create your user account interactively
bin/rails admin:create_user
# Run the server
bin/dev
```
### License
[The MIT License (MIT)](LICENSE.txt)