https://github.com/artofcode-/chef
Student Chef: Recipes for students
https://github.com/artofcode-/chef
Last synced: about 2 months ago
JSON representation
Student Chef: Recipes for students
- Host: GitHub
- URL: https://github.com/artofcode-/chef
- Owner: ArtOfCode-
- Created: 2016-07-17T19:43:30.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-19T16:24:11.000Z (over 8 years ago)
- Last Synced: 2025-02-08T01:35:00.705Z (3 months ago)
- Language: Ruby
- Size: 699 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `chef`: The Student Chef
Recipes for students, served in a homemade web app.-----
## Setup
Want to use this for yourself? Go for it! Here's some commands that you're going to need to run:git clone https://github.com/ArtOfCode-/chef
cd chef
bundle install
rails db:create
rails db:schema:load
rails db:migrate
rails db:seed
rails assets:precompile
rails s -e productionMake sure you're using Ruby > 2.2.2 and Rails 5.0.0.
If you're trying to launch this on a production server, visible to the general Internet rather than just on local, you
*may* need to bind to the machine's LAN IP explicitly. This is usually of the form `192.168.xxx.xxx` or `172.xxx.xxx.xxx`.
Bind the server to this using the `-b` switch:rails s -b 192.168.0.20 -e production