Skip to content

Commit

Permalink
init public version
Browse files Browse the repository at this point in the history
  • Loading branch information
nickisnoble committed Sep 15, 2024
0 parents commit 41d8ecc
Show file tree
Hide file tree
Showing 253 changed files with 5,178 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .env.example.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
HOSTNAME=yoursite.com
[email protected]
RESEND_API_KEY=your_resend_api_key
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# See https://git-scm.com/docs/gitattributes for more about git attribute files.

# Mark the database schema as having been generated.
db/schema.rb linguist-generated

# Mark any vendored files as having been vendored.
vendor/* linguist-vendored
config/credentials/*.yml.enc diff=rails_credentials
config/credentials.yml.enc diff=rails_credentials
40 changes: 40 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# 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'

.DS_Store

# Ignore bundler config.
/.bundle

# Ignore all environment files (except templates).
/.env*
!/.env*.erb

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

# Ignore pidfiles, but keep the directory.
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep

# Ignore storage (uploaded files in development and any SQLite databases).
/storage/*
!/storage/.keep
/tmp/storage/*
!/tmp/storage/
!/tmp/storage/.keep

/public/assets

# Ignore master key for decrypting credentials and more.
/config/master.key

/app/assets/builds/*
!/app/assets/builds/.keep
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.2.2
41 changes: 41 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
source "https://rubygems.org"
ruby "3.2.2"

gem "rails", "~> 7.1.2"
gem "sprockets-rails"
gem "puma", ">= 5.0"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "tailwindcss-rails", "~> 2.1"

gem "tzinfo-data", platforms: %i[windows jruby]
gem "bootsnap", require: false

# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
gem "image_processing", "~> 1.2"

gem "passwordless", "~> 1.2"
gem "sqlite3", "~> 1.4"
gem "aws-sdk-s3", require: false

group :production do
gem "resend"
end

group :development, :test do
gem "debug", platforms: %i[mri windows]
end

group :development do
gem "web-console"
gem "letter_opener"
gem "rails_live_reload"
end

group :test do
gem "capybara"
gem "cuprite"
end

gem "geocoder", "~> 1.8"
Loading

0 comments on commit 41d8ecc

Please sign in to comment.