https://github.com/tjoye20/sinatra_template
Template for building Sinatra apps.
https://github.com/tjoye20/sinatra_template
Last synced: 2 months ago
JSON representation
Template for building Sinatra apps.
- Host: GitHub
- URL: https://github.com/tjoye20/sinatra_template
- Owner: tjoye20
- Created: 2016-09-11T07:37:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-11T07:38:10.000Z (over 8 years ago)
- Last Synced: 2025-01-16T10:14:30.454Z (4 months ago)
- Language: Ruby
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sinatra template
This repository is a template to quickly get started building Sinatra apps.
Notable packages included: dotenv gem (to store data in your local environment), and Semantic UI CDN web framework. Feel free to configure
### Quickstart
Fork this repository into your Github profile, then clone it down to your local machine. Now, ```` bundle install ```` to install all the required gems. You'll use ```` bundle exec```` before all commands now, to make sure you're including the list of gems required every time you make changes to the program.
Ex.: To launch Sinatra, you use ```` bundle exec shotgun````. To enter your Rake commands, you enter ```` bundle exec rake db:create ````
Note: ````be```` is a stored alias for ````bundle exec````, so your commands can be entered as ````be shotgun````, or ```` be rake db:create````, etc.