https://github.com/phawk/tweeter
https://github.com/phawk/tweeter
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/phawk/tweeter
- Owner: phawk
- License: mit
- Created: 2023-03-18T19:04:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-19T14:27:20.000Z (almost 3 years ago)
- Last Synced: 2024-10-25T01:39:09.990Z (over 1 year ago)
- Language: Ruby
- Size: 162 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# RapidRuby.com Starter
This app is a starter template that I use for most of my example apps that I build for my Youtube and Rapid Ruby episodes.
### Core features
- Rails 7
- Hotwire using importmaps
- 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
git remote rm origin
gh repo create new_project_name --public --source=.
git push origin main -u
bin/rails db:create
# Run the server
bin/dev
```
### License
[The MIT License (MIT)](LICENSE.txt)