Skip to content

alubbe/paperclip_demo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Paperclip Demo

Reference Application

Paperclip Demo Application

Application allows users to manage a list of “friends” using a basic Rails scaffold. Each friend will have a Name and Avatar. Paperclip will provide the image upload and resizing functionality. The app will demonstrate how to create different sized thumbnails, display resized images on different screens, and gracefully degrade to display missing avatars “missing.png” for friends without an avatar.

Install Codebase

Clone the git repository

$ git clone git@github.com:thoughtbot/paperclip_demo.git
$ cd paperclip_demo
$ bundle

Create database and run migrations

$ rake db:create db:migrate

Run the rails server

$ rails s

View Application

From a web browser access the site via localhost:3000

Deploy the application to Heroku

Create an application container on Heroku

$ heroku create

Push the code to the Heroku container

$ git push heroku master

Run any database migrations

$ heroku rake db:migrate

Set the AWS S3 config vars

$ heroku config:add AWS_BUCKET=your_bucket_name
$ heroku config:add AWS_ACCESS_KEY_ID=your_access_key_id
$ heroku config:add AWS_SECRET_ACCESS_KEY=your_secret_access_key

Now view your Heroku application

$ heroku open

Test suite

RSpec and Capybara used for Integration and Unit tests

$ rspec

Credits

thoughtbot

Paperclip Demo is maintained by thoughtbot, inc

The names and logos for thoughtbot are trademarks of thoughtbot, inc.

License

Trail Map is licensed under the Creative Commons Attribution License.

About

Paperclip demo application

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published