https://github.com/bergpb/vforvendettaquotes
A simple Sintra Modular Application to show V for Vendetta quotes.
https://github.com/bergpb/vforvendettaquotes
Last synced: 3 months ago
JSON representation
A simple Sintra Modular Application to show V for Vendetta quotes.
- Host: GitHub
- URL: https://github.com/bergpb/vforvendettaquotes
- Owner: bergpb
- Created: 2019-01-28T01:57:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-20T14:27:26.000Z (over 3 years ago)
- Last Synced: 2024-04-14T03:49:31.765Z (about 2 years ago)
- Language: Ruby
- Size: 69.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# V for Vendetta Quotes
### A simple Sintra Modular Application to show V for Vendetta quotes.
#### Deployed into Heroku: [https://vforvendettaquotes.herokuapp.com](https://vforvendettaquotes.herokuapp.com)
#### How to run:
Clone project:
git clone https://github.com/bergpb/vforvendettaquotes.git
Install dependencies:
bundle --without production
Run migrations and seeds:
RAKE_ENV=development rake db:create db:migrate db:seed
Run project:
RAKE_ENV=development rake serve
##### Some usefull commands:
- Creating a migration: ```RAKE_ENV=development rake db:create_migration NAME=create_name```
- Creating database: ```RAKE_ENV=development rake db:create```
- Migrating database: ```RAKE_ENV=development rake db:migrate```
- Seeding database: ```RAKE_ENV=development rake db:seed```
- Run haml linter: ```rake haml_lint```
- Run rubocop linter: ```rubocop -l```
- Run rubocop autofix: ```rubocop -a```