Skip to content

Commit db63a3d

Browse files
committed
init
0 parents  commit db63a3d

File tree

107 files changed

+4036
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+4036
-0
lines changed

.env

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
REDIS_QUEUE_URI=redis://127.0.0.1:6379
2+
SIDEKIQ_PASSWORD=bGS4ddTSvSqn
3+
SHOPIFY_API_KEY=
4+
SHOPIFY_SECRET=

.env.production

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
SHOPIFY_API_KEY=
2+
SHOPIFY_SECRET=

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
/node_modules
21+
/yarn-error.log
22+
23+
.byebug_history
24+
25+
config/settings.local.yml
26+
config/settings/*.local.yml
27+
config/environments/*.local.yml

.gitlab-ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
before_script:
2+
- sudo apt-get update -qq && sudo apt-get install -y -qq sqlite3 libsqlite3-dev
3+
- rbenv install --skip-existing `cat .ruby-version`
4+
- rbenv global `cat .ruby-version`
5+
- rbenv rehash
6+
- gem install bundler --no-ri --no-rdoc
7+
- bundle install --jobs $(nproc) "${FLAGS[@]}"
8+
9+
test:
10+
script:
11+
- sudo bin/rails test
12+
13+
rubocop:
14+
script:
15+
- bundle exec rubocop

.rubocop.yml

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
inherit_from: .rubocop_todo.yml
2+
3+
AllCops:
4+
Exclude:
5+
- 'vendor/**/*'
6+
- 'test/fixtures/**/*'
7+
- 'db/**/*'
8+
- 'bin/**/*'
9+
- 'log/**/*'
10+
- 'tmp/**/*'
11+
12+
Lint/EndAlignment:
13+
EnforcedStyleAlignWith: variable
14+
15+
Lint/UnusedMethodArgument:
16+
Enabled: false
17+
18+
Layout/AccessModifierIndentation:
19+
EnforcedStyle: outdent
20+
21+
Layout/AlignArray:
22+
Enabled: false
23+
24+
Layout/AlignParameters:
25+
EnforcedStyle: with_fixed_indentation
26+
27+
Style/BracesAroundHashParameters:
28+
Enabled: false
29+
30+
Layout/CaseIndentation:
31+
EnforcedStyle: end
32+
33+
# This is disabled because it wants parens to look like this:
34+
#
35+
# campaign = Fabricate(:campaign,
36+
# name: "Foo"
37+
# )
38+
# Yuck.
39+
Layout/ClosingParenthesisIndentation:
40+
Enabled: false
41+
42+
Style/Documentation:
43+
Enabled: false
44+
45+
Layout/DotPosition:
46+
EnforcedStyle: trailing
47+
48+
Layout/IndentHash:
49+
EnforcedStyle: consistent
50+
51+
Style/IfUnlessModifier:
52+
Enabled: false
53+
54+
Layout/MultilineOperationIndentation:
55+
EnforcedStyle: indented
56+
57+
# This would forbid appending `rescue nil`
58+
Style/RescueModifier:
59+
Enabled: false
60+
61+
# This is the rule that enforces single quotes.
62+
Style/StringLiterals:
63+
Enabled: false
64+
65+
Style/WordArray:
66+
Enabled: false
67+
68+
Metrics/ModuleLength:
69+
Max: 250

.rubocop_todo.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Configuration parameters: CountComments.
2+
Metrics/ClassLength:
3+
Max: 200
4+
5+
Metrics/ModuleLength:
6+
Max: 200
7+
8+
Metrics/LineLength:
9+
Max: 90
10+
Exclude:
11+
- 'test/test_helper.rb'
12+
- 'config/puma.rb'
13+
- 'config/initializers/config.rb'
14+
- 'config/initializers/assets.rb'
15+
- 'config/initializers/backtrace_silencers.rb'
16+
- 'config/initializers/wrap_parameters.rb'
17+
- 'config/initializers/devise.rb'
18+
- 'config/application.rb'
19+
- 'config/environments/*'
20+
- 'Rakefile'
21+
22+
Style/ClassAndModuleChildren:
23+
Exclude:
24+
- 'test/test_helper.rb'
25+
26+
Bundler/OrderedGems:
27+
Enabled: false
28+
29+
Style/FrozenStringLiteralComment:
30+
Enabled: false

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.4.0

Gemfile

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
source 'https://rubygems.org'
2+
3+
git_source(:github) do |repo_name|
4+
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
5+
"https://github.com/#{repo_name}.git"
6+
end
7+
8+
ruby "2.4"
9+
10+
gem 'rails', '~> 5.1.1'
11+
gem 'puma', '~> 3.0'
12+
13+
gem 'haml'
14+
gem 'sass-rails', '~> 5.0'
15+
gem 'uglifier', '>= 1.3.0'
16+
gem 'coffee-rails', '~> 4.2'
17+
18+
gem 'jquery-rails'
19+
gem 'jbuilder', '~> 2.5'
20+
21+
gem 'rest-client'
22+
23+
# Shopify
24+
gem 'shopify_app'
25+
gem 'activeresource', github: 'rails/activeresource'
26+
27+
# Queuing
28+
gem 'sidekiq'
29+
gem 'sidekiq-throttler'
30+
gem 'redis', '~> 3.2'
31+
32+
gem 'config'
33+
gem 'interactor'
34+
35+
# Frontend
36+
gem 'active_link_to'
37+
gem 'kaminari'
38+
39+
# Monitoring
40+
gem 'newrelic_rpm'
41+
gem 'mixpanel-ruby'
42+
gem 'sentry-raven'
43+
44+
# Environment
45+
gem 'dotenv-rails'
46+
gem 'non-stupid-digest-assets'
47+
48+
group :development, :test do
49+
gem 'sqlite3'
50+
gem 'byebug', platform: :mri
51+
gem 'rb-readline'
52+
gem 'pry'
53+
gem 'rubocop', require: false
54+
gem 'bullet'
55+
end
56+
57+
group :development do
58+
gem 'web-console', '>= 3.3.0'
59+
gem 'listen'
60+
gem 'spring'
61+
gem 'spring-watcher-listen', '~> 2.0.0'
62+
gem 'awesome_print'
63+
end
64+
65+
group :production do
66+
gem 'pg'
67+
end
68+
69+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
70+
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

0 commit comments

Comments
 (0)