https://github.com/aakashjhawar/pdf-uploader
A Rails app to upload multiple PDFs
https://github.com/aakashjhawar/pdf-uploader
Last synced: 19 days ago
JSON representation
A Rails app to upload multiple PDFs
- Host: GitHub
- URL: https://github.com/aakashjhawar/pdf-uploader
- Owner: aakashjhawar
- Created: 2019-05-03T18:33:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T12:43:09.000Z (over 2 years ago)
- Last Synced: 2025-03-29T06:29:58.972Z (6 months ago)
- Language: Ruby
- Size: 6.91 MB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
PDF Uploader web app using the [Ruby on Rails](http://rubyonrails.org) framework. Upload multiple PDFs at the same time.
### Requirements
* Rails 5.2.2
* Ruby 2.5
* Sqlite3### Running Locally
Make sure you have [Ruby](https://www.ruby-lang.org) and [Bundler](http://bundler.io) installed.
```sh
git clone https://github.com/aakashjhawar/pdf-uploader.git #You can also clone your own fork
cd photo-app
bundle install
rails db:create
rails db:create
rails server
```
Your app should now be running on [localhost:3000](http://localhost:3000/).## Deploying to Heroku
```
heroku create
git push heroku master
heroku run rake db:migrate
heroku open
```Alternatively, you can deploy your own copy of the app using the web-based flow:
[](https://heroku.com/deploy)
## Documentation
For more information about using Ruby on Heroku, see these Dev Center articles:
- [Ruby on Heroku](https://devcenter.heroku.com/categories/ruby)
- [Getting Started with Ruby on Heroku](https://devcenter.heroku.com/articles/getting-started-with-ruby)
- [Heroku Ruby Support](https://devcenter.heroku.com/articles/ruby-support)