ChoiceCastings.com
Torey Heinz
committed Sep 25, 2017
commit da70b8805fa23c329229deedd8100a50bf9a9db4
Showing 7
changed files with
80 additions
and 0 deletions
Gemfile
+24
-0
| @@ | @@ -0,0 +1,24 @@ |
| + | source 'https://rubygems.org' |
| + | |
| + | gem 'locomotivecms_wagon', '~> 2.2.0' |
| + | |
| + | # gem 'guard-livereload', '~> 2.5.1' |
| + | |
| + | group :development do |
| + | # Mac OS X |
| + | gem 'rb-fsevent', '~> 0.9.1', require: 'rb-fsevent' if RUBY_PLATFORM.include?('darwin') |
| + | |
| + | # Unix |
| + | gem 'therubyracer', require: 'v8', platforms: :ruby unless RUBY_PLATFORM.include?('darwin') |
| + | |
| + | gem 'rb-inotify', '~> 0.9', require: 'rb-inotify' if RUBY_PLATFORM.include?('linux') |
| + | |
| + | # Windows |
| + | gem 'wdm', '~> 0.1.1', require: 'wdm' if RUBY_PLATFORM =~ /mswin|mingw/i |
| + | end |
| + | |
| + | group :misc do |
| + | # Add your extra gems here |
| + | # gem 'susy', require: 'susy' |
| + | # gem 'bourbon', require: 'bourbon' |
| + | end |
Guardfile
+22
-0
| @@ | @@ -0,0 +1,22 @@ |
| + | # LiveReload installation |
| + | # |
| + | # 1. Add the guard-livereload gem to your Gemfile OR uncomment the line: |
| + | # |
| + | # gem 'guard-livereload' |
| + | # |
| + | # 2. Install the gem on your machine |
| + | # |
| + | # bundle install |
| + | # |
| + | # 3. Launch Guard |
| + | # |
| + | # bundle exec guard |
| + | # |
| + | |
| + | guard 'livereload', host: '0.0.0.0', port: ENV['WAGON_LIVERELOAD_PORT'] || 35729, grace_period: 0.5 do |
| + | watch(%r{app/content_types/.+\.yml$}) |
| + | watch(%r{app/views/.+\.liquid}) |
| + | watch(%r{config/.+\.yml$}) |
| + | watch(%r{data/.+\.yml$}) |
| + | watch(%r{public/((stylesheets|javascripts)/(.+\.(css|js))).*}) { |m| "/#{m[1]}" } |
| + | end |
app/views/pages/404.liquid
+9
-0
| @@ | @@ -0,0 +1,9 @@ |
| + | --- |
| + | title: Page not found |
| + | slug: '404' |
| + | position: 1 |
| + | listed: true |
| + | published: true |
| + | is_layout: false |
| + | --- |
| + | Content of the 404 page |
| \ No newline at end of file | |
app/views/pages/index.liquid
+9
-0
| @@ | @@ -0,0 +1,9 @@ |
| + | --- |
| + | title: Home page |
| + | slug: index |
| + | position: 0 |
| + | listed: true |
| + | published: true |
| + | is_layout: false |
| + | --- |
| + | Content of the home page |
| \ No newline at end of file | |
config/deploy.yml
+5
-0
| @@ | @@ -0,0 +1,5 @@ |
| + | production: |
| + | host: http://cms.teagles.io |
| + | handle: choice-castings |
| + | email: torey@teagles.io |
| + | api_key: 688697709bb800280ffd38d5484b1f8bf8b9212d |
| \ No newline at end of file | |
config/metafields_schema.yml
+1
-0
| @@ | @@ -0,0 +1 @@ |
| + | --- {} |
config/site.yml
+10
-0
| @@ | @@ -0,0 +1,10 @@ |
| + | name: ChoiceCastings.com |
| + | locales: [en] |
| + | domains: [] |
| + | timezone: UTC |
| + | seo_title: |
| + | meta_keywords: |
| + | meta_description: |
| + | robots_txt: |
| + | metafields: |
| + | metafields_ui: {} |