Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Maximum Effort!
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Gotth-Olsen authored and Matthew Gotth-Olsen committed Aug 14, 2018
1 parent 4e6beaa commit 5158c2e
Show file tree
Hide file tree
Showing 1,449 changed files with 72,999 additions and 1,896 deletions.
10 changes: 10 additions & 0 deletions .ebextensions/packages.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
packages:
yum:
git: []
patch: []
gcc: []
libxml2: []
libxml2-devel: []
libxslt: []
libxslt-devel: []

48 changes: 48 additions & 0 deletions .env_sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# MLab's Big Query Configuration #
##################################
MLAB_BIGQUERY_DATASET:
MLAB_BIGQUERY_EMAIL:
MLAB_BIGQUERY_PRIVATE_KEY:
MLAB_BIGQUERY_PRIVATE_KEY_PASSPHRASE:
MLAB_BIGQUERY_AUTH_METHOD:

# General Configuration #
#########################
LANG=en_US.UTF-8
RAILS_SERVE_STATIC_FILES=
SECRET_KEY_BASE=
SECRET_TOKEN=

# 3rd party API integrations #
##############################
MAPBOX_API_KEY=
MAPTECHNICA_API_KEY=

# Environment Configuration #
#############################
RACK_ENV=development
RAILS_ENV=development

# Development Environment Variables #
#####################################
RDS_DEV_DB_NAME=
RDS_DEV_HOSTNAME=
RDS_DEV_PASSWORD=
RDS_DEV_PORT=
RDS_DEV_USERNAME=

# Staging Environment Variables #
####################################
RDS_DB_NAME=
RDS_HOSTNAME=
RDS_PASSWORD=
RDS_PORT=
RDS_USERNAME=

# Production Environment Variables #
####################################
RDS_DB_NAME=
RDS_HOSTNAME=
RDS_PASSWORD=
RDS_PORT=
RDS_USERNAME=
43 changes: 29 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle

# Ignore all logfiles and tempfiles.
/log/*
!/log/.keep
/tmp
public/assets

# Elastic Beanstalk Files #
###########################
.elasticbeanstalk/*
!.elasticbeanstalk/*.cfg.yml
!.elasticbeanstalk/*.global.yml

# Heroku Procfile #
###################
# Procfile

# Configuration #
#################
.env

# Logs and databases #
######################
*.log
*.sql

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
44 changes: 44 additions & 0 deletions .rake_tasks~
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
about
assets:clean[keep]
assets:clobber
assets:environment
assets:precompile
cache_digests:dependencies
cache_digests:nested_dependencies
db:create
db:drop
db:fixtures:load
db:migrate
db:migrate:status
db:rollback
db:schema:cache:clear
db:schema:cache:dump
db:schema:dump
db:schema:load
db:seed
db:setup
db:structure:dump
db:structure:load
db:version
doc:app
geocode:all
geocoder:maxmind:geolite:download
geocoder:maxmind:geolite:extract
geocoder:maxmind:geolite:insert
geocoder:maxmind:geolite:load
log:clear
middleware
notes
notes:custom
rails:template
rails:update
routes
secret
stats
test
test:all
test:all:db
test:db
time:zones:all
tmp:clear
tmp:create
16 changes: 14 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
ruby '2.3.1'
source 'https://rubygems.org'
gem 'dotenv-rails', groups: [:production, :development, :test]

gem 'rails', '4.2.3'
gem 'mysql2', '~> 0.3.19'
gem 'puma'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
Expand All @@ -25,6 +28,15 @@ gem 'google-analytics-rails', '1.1.0'
gem 'mechanize'
gem 'meta-tags-helpers', '~> 0.2.0'
gem 'social-share-button'
gem 'httparty'
gem 'exception_notification'
gem 'useragent'
gem 'bigquery-client'
gem 'chosen-rails'
gem 'bootstrap-datepicker-rails'
gem 'actionpack-page_caching'
gem 'whenever', require: false
gem 'geoip'
gem 'ipaddress'

group :production do
gem 'unicorn'
end
Loading

0 comments on commit 5158c2e

Please sign in to comment.