flatiron-rails 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/templates/flatiron.rb +8 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b97491af46fd2b2fd07ceba23dc41df47f20d0ba
|
4
|
+
data.tar.gz: 8e764577e69117ced3333a5edc8c759686d0d65e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45e2fbe016ee3d9a1d54efc19d16746698542b2638141766fc692596d9ec804a6fa6085bc1a7428e43d60ec7535d1145ec3556d3009cd07e5c035be73be32e7e
|
7
|
+
data.tar.gz: 7f96ef6da24865f358cc0976efad7887f7d53906147820cbce94444e02fd078852ea340803fa1d6b400c99136f677b5ce7c88e4a4a4a01daa3de4835bbaf8b0a
|
data/templates/flatiron.rb
CHANGED
@@ -94,6 +94,7 @@ end
|
|
94
94
|
gem_group :production do
|
95
95
|
gem 'pg'
|
96
96
|
gem 'google-analytics-rails'
|
97
|
+
gem 'newrelic_rpm'
|
97
98
|
gem 'rails_12factor'
|
98
99
|
end
|
99
100
|
|
@@ -378,10 +379,12 @@ file 'STACK.md', <<-STACK.strip_heredoc.chomp
|
|
378
379
|
2. Frontend
|
379
380
|
* Bootstrap
|
380
381
|
* Disabled Turbolinks
|
381
|
-
* Google Analytics
|
382
382
|
* Precompiled assets in production
|
383
383
|
3. Gem groups set up for easy Heroku deployment
|
384
384
|
* Postgres will work out of the box. No configuration necessary.
|
385
|
+
4. Misc
|
386
|
+
* Google Analytics
|
387
|
+
* New Relic
|
385
388
|
|
386
389
|
TODO:
|
387
390
|
1. An MIT License file has been created for you
|
@@ -392,6 +395,10 @@ file 'STACK.md', <<-STACK.strip_heredoc.chomp
|
|
392
395
|
3. Google Analytics is set up to track your app
|
393
396
|
* Set up an application on Google Analytics
|
394
397
|
* You will need to add your analytics tracking code to `config/secrets.yml`
|
398
|
+
4. Sign up for a (New Relic)[http://newrelic.com/] account
|
399
|
+
* Follow the instructions for generating your license key
|
400
|
+
* Replace `config/newrelic.yml` with the one you download from New Relic
|
401
|
+
* Deploy your app, then connect to it from the New Relic dashboard
|
395
402
|
|
396
403
|
Deploying to Heroku:
|
397
404
|
1. `bin/setup [<app_name>]`
|