https://github.com/evgenyneu/cookbook
A demo recipe web site made in Rails
https://github.com/evgenyneu/cookbook
Last synced: about 2 months ago
JSON representation
A demo recipe web site made in Rails
- Host: GitHub
- URL: https://github.com/evgenyneu/cookbook
- Owner: evgenyneu
- Created: 2016-11-17T05:14:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-17T06:00:18.000Z (over 8 years ago)
- Last Synced: 2025-01-10T14:42:05.298Z (3 months ago)
- Language: Ruby
- Homepage: https://evgenii-cookbook.herokuapp.com
- Size: 74.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cookbook
This is a demo recipe web site made in Rails.
[View demo web site](https://evgenii-cookbook.herokuapp.com/)
## Setup development environment
```
brew install postgresql
git clone https://github.com/evgenyneu/cookbook.git
cd cookbook
bundle
rails db:create
rails db:migrate
rails server
```## Run tests
```
rails test
```