PostalPast.com is a repository of postcards from the early 20th century collected by me (@joshuamcginnis) over the years.
Most postcards have a connection to Waltham, Massachusetts, USA which is often referred to as The Birthplace of the Industrial Revolution. Citation Needed
The website was primarily created as a way for me to track which postcards I already own so that I can easily search through my collection when looking for new postcards to collect.
In addition, my hope is that this projects affords me the ability to learn and implement:
- A fully-tested and production-ready app to add to my portfolio
- Server-side image processing using ImageMagick
- Performance optimization techniques (caching, redis, etc)
- Data Analysis and Charting of postcard metadata using R
- Interactive UI / UX using modern javascript
Nothing would please me more than if local historians, other postcard collectors or the general public find the information useful and interesting.
- Homepage: https://postalpast.com/
- Source: https://github.com/joshuamcginnis/postalpast
- LinkedIn: @joshuamc
Get started by first installing all require dependencies.
- Install rvm to manage ruby versions.
- Use rvm to install ruby using the version stated at the top of the Gemfile (e.g.
rvm install 2.3.2
) - Using
homebrew
or your favorite package manager:brew install postgres redis
- Install bundler:
gem install bundler
- Run bundle install:
bundle install
- Prepare the database:
rake db:setup
RAILS_ENV=test rake db:setup
#for test db
- Start the server!
rails s
- Visit: http://localhost:3000
Infrastructure is managed with Dokku hosted at DigitalOcean.
Two DNS records are created to manage apps and resolve to the DO droplet:
app.mcginnis.io
and *.app.mcginnis.io
App domains following the following convention:
- Dev:
name.dev.app.mcginnis.io
- Staging:
name.staging.app.mcginnis.io
- Production:
name.prod.app.mcginnis.io
PreDeployment Checklist Per the Dokku app deployment guide, one must create the application and enabled plugins before deploying.
dokku apps:create postalpast
Both buildpacks are required to build both ruby and yarn (js) apps.
dokku buildpacks:add postalpast https://github.com/heroku/heroku-buildpack-ruby.git
dokku buildpacks:add postalpast https://github.com/heroku/heroku-buildpack-nodejs.git
The following vars must be set prior to deployment:
dokku config:set postalpast ENVIRONMENT=production
dokku config:set postalpast SHRINE_SECRET_KEY=#{SecureRandom.hex}
dokku config:set AWS_S3_ACCESS_KEY_ID
dokku config:set AWS_S3_SECRET_ACCESS_KEY
dokku config:set AWS_S3_REGION
dokku config:set AWS_S3_BUCKET
PostgreSQL
To setup PG, the plugin must be installed, the service must be created and linked to the app. Linking will set the DATABASE_URL
environment variable.
sudo dokku plugin:install https://github.com/dokku/dokku-postgres.git
dokku postgres:create postalpast
dokku postgres:link postalpast postalpaste
Add the remote to the local GIT repository and push:
git remote add dokku [email protected]:postalpast
git push dokku main:master
dokku run postalpast bundle exec rake [task]
dokku run postalpast bundle exec rails c
Add IRB.conf[:USE_AUTOCOMPLETE] = false
in ~/.irbrc