https://github.com/gilbert/shout
A nice-looking url shortener (with admin panel) that uses random dictionary words
https://github.com/gilbert/shout
Last synced: 6 months ago
JSON representation
A nice-looking url shortener (with admin panel) that uses random dictionary words
- Host: GitHub
- URL: https://github.com/gilbert/shout
- Owner: gilbert
- Created: 2014-01-13T02:56:30.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T19:32:40.000Z (over 3 years ago)
- Last Synced: 2025-03-05T22:49:19.293Z (over 1 year ago)
- Language: HTML
- Homepage: mks.io
- Size: 1.57 MB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# New App
Features:
- [User accounts](https://github.com/thoughtbot/clearance)
- [Tailwind.css](https://tailwindcss.com)
- [Alpine.js](https://github.com/alpinejs/alpine)
- [Heroicons](https://github.com/refactoringui/heroicons)
## Getting started
```bash
$ bundle
$ yarn
$ rails db:create db:migrate db:seed
$ rails s
# Get rid of those pesky warnings
$ export RUBYOPT='-W:no-deprecated -W:no-experimental'
```
## Debug Helpers
Visit [/debug](http://localhost:300/debug) to view handy debug features.
## Icons
Imported [Heroicons](https://github.com/refactoringui/heroicons) are available to render in views on demand. Here's an example:
```erb
<%= render 'icons/outline/camera', class: 'h-6 w-6 text-gray-500' %>
```