Skip to content

Commit 5a4f5f1

Browse files
committed
Initial commit with minimal template from https://github.com/lewagon/rails-templates
0 parents  commit 5a4f5f1

File tree

98 files changed

+3083
-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.

98 files changed

+3083
-0
lines changed

.gitattributes

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
2+
3+
# Mark the database schema as having been generated.
4+
db/schema.rb linguist-generated
5+
6+
# Mark any vendored files as having been vendored.
7+
vendor/* linguist-vendored

.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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 all logfiles and tempfiles.
11+
/log/*
12+
/tmp/*
13+
!/log/.keep
14+
!/tmp/.keep
15+
16+
# Ignore pidfiles, but keep the directory.
17+
/tmp/pids/*
18+
!/tmp/pids/
19+
!/tmp/pids/.keep
20+
21+
# Ignore uploaded files in development.
22+
/storage/*
23+
!/storage/.keep
24+
/tmp/storage/*
25+
!/tmp/storage/
26+
!/tmp/storage/.keep
27+
28+
/public/assets
29+
30+
# Ignore master key for decrypting credentials and more.
31+
/config/master.key
32+
33+
/app/assets/builds/*
34+
!/app/assets/builds/.keep
35+
36+
/node_modules
37+
# Ignore .env file containing credentials.
38+
.env*
39+
40+
# Ignore Mac and Linux file system files
41+
*.swp
42+
.DS_Store

.rubocop.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
AllCops:
2+
NewCops: enable
3+
Exclude:
4+
- 'bin/**/*'
5+
- 'db/**/*'
6+
- 'config/**/*'
7+
- 'node_modules/**/*'
8+
- 'script/**/*'
9+
- 'support/**/*'
10+
- 'tmp/**/*'
11+
- 'test/**/*'
12+
13+
Style/ConditionalAssignment:
14+
Enabled: false
15+
Style/StringLiterals:
16+
Enabled: false
17+
Style/RedundantReturn:
18+
Enabled: false
19+
Style/Documentation:
20+
Enabled: false
21+
Style/WordArray:
22+
Enabled: false
23+
Metrics/AbcSize:
24+
Enabled: false
25+
Style/MutableConstant:
26+
Enabled: false
27+
Style/SignalException:
28+
Enabled: false
29+
Metrics/CyclomaticComplexity:
30+
Enabled: false
31+
Style/MissingRespondToMissing:
32+
Enabled: false
33+
Lint/MissingSuper:
34+
Enabled: false
35+
Style/FrozenStringLiteralComment:
36+
Enabled: false
37+
Layout/LineLength:
38+
Max: 120
39+
Style/EmptyMethod:
40+
Enabled: false
41+
Bundler/OrderedGems:
42+
Enabled: false

.ruby-version

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

Gemfile

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
source "https://rubygems.org"
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby "3.1.2"
5+
6+
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
7+
gem "rails", "~> 7.0.4", ">= 7.0.4.2"
8+
9+
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
10+
gem "sprockets-rails"
11+
12+
# Use postgresql as the database for Active Record
13+
gem "pg", "~> 1.1"
14+
15+
# Use the Puma web server [https://github.com/puma/puma]
16+
gem "puma", "~> 5.0"
17+
18+
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
19+
gem "jsbundling-rails"
20+
21+
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
22+
gem "turbo-rails"
23+
24+
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
25+
gem "stimulus-rails"
26+
27+
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
28+
gem "jbuilder"
29+
30+
# Use Redis adapter to run Action Cable in production
31+
# gem "redis", "~> 4.0"
32+
33+
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
34+
# gem "kredis"
35+
36+
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
37+
# gem "bcrypt", "~> 3.1.7"
38+
39+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
40+
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
41+
42+
# Reduces boot times through caching; required in config/boot.rb
43+
gem "bootsnap", require: false
44+
45+
# Use Sass to process CSS
46+
gem "sassc-rails"
47+
48+
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
49+
# gem "image_processing", "~> 1.2"
50+
51+
gem "autoprefixer-rails"
52+
gem "font-awesome-sass", "~> 6.1"
53+
gem "simple_form", github: "heartcombo/simple_form"
54+
group :development, :test do
55+
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
56+
gem "debug", platforms: %i[ mri mingw x64_mingw ]
57+
gem "dotenv-rails"
58+
59+
end
60+
61+
group :development do
62+
# Use console on exceptions pages [https://github.com/rails/web-console]
63+
gem "web-console"
64+
65+
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
66+
# gem "rack-mini-profiler"
67+
68+
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
69+
# gem "spring"
70+
end
71+
72+
group :test do
73+
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
74+
gem "capybara"
75+
gem "selenium-webdriver"
76+
gem "webdrivers"
77+
end

0 commit comments

Comments
 (0)