Skip to content

Commit 09ea3f9

Browse files
committed
Initial commit
0 parents  commit 09ea3f9

Some content is hidden

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

47 files changed

+1037
-0
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
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

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
22+
/public/assets
23+
24+
# Ignore master key for decrypting credentials and more.
25+
/config/master.key

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-3.1.2

Gemfile

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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.3"
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+
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
19+
# gem "kredis"
20+
21+
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
22+
# gem "bcrypt", "~> 3.1.7"
23+
24+
# Reduces boot times through caching; required in config/boot.rb
25+
gem "bootsnap", require: false
26+
27+
# Use Sass to process CSS
28+
# gem "sassc-rails"
29+
30+
# Expose data using a GraphQL API
31+
gem "graphql"
32+
33+
group :development, :test do
34+
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
35+
gem "pry-rails"
36+
gem "pry-byebug"
37+
end
38+
39+
group :development do
40+
# Use console on exceptions pages [https://github.com/rails/web-console]
41+
gem "web-console"
42+
43+
# Add a development IDE to work with GraphQL queries
44+
gem "graphiql-rails"
45+
46+
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
47+
# gem "rack-mini-profiler"
48+
49+
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
50+
# gem "spring"
51+
end

Gemfile.lock

Lines changed: 197 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (7.0.3)
5+
actionpack (= 7.0.3)
6+
activesupport (= 7.0.3)
7+
nio4r (~> 2.0)
8+
websocket-driver (>= 0.6.1)
9+
actionmailbox (7.0.3)
10+
actionpack (= 7.0.3)
11+
activejob (= 7.0.3)
12+
activerecord (= 7.0.3)
13+
activestorage (= 7.0.3)
14+
activesupport (= 7.0.3)
15+
mail (>= 2.7.1)
16+
net-imap
17+
net-pop
18+
net-smtp
19+
actionmailer (7.0.3)
20+
actionpack (= 7.0.3)
21+
actionview (= 7.0.3)
22+
activejob (= 7.0.3)
23+
activesupport (= 7.0.3)
24+
mail (~> 2.5, >= 2.5.4)
25+
net-imap
26+
net-pop
27+
net-smtp
28+
rails-dom-testing (~> 2.0)
29+
actionpack (7.0.3)
30+
actionview (= 7.0.3)
31+
activesupport (= 7.0.3)
32+
rack (~> 2.0, >= 2.2.0)
33+
rack-test (>= 0.6.3)
34+
rails-dom-testing (~> 2.0)
35+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
36+
actiontext (7.0.3)
37+
actionpack (= 7.0.3)
38+
activerecord (= 7.0.3)
39+
activestorage (= 7.0.3)
40+
activesupport (= 7.0.3)
41+
globalid (>= 0.6.0)
42+
nokogiri (>= 1.8.5)
43+
actionview (7.0.3)
44+
activesupport (= 7.0.3)
45+
builder (~> 3.1)
46+
erubi (~> 1.4)
47+
rails-dom-testing (~> 2.0)
48+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
49+
activejob (7.0.3)
50+
activesupport (= 7.0.3)
51+
globalid (>= 0.3.6)
52+
activemodel (7.0.3)
53+
activesupport (= 7.0.3)
54+
activerecord (7.0.3)
55+
activemodel (= 7.0.3)
56+
activesupport (= 7.0.3)
57+
activestorage (7.0.3)
58+
actionpack (= 7.0.3)
59+
activejob (= 7.0.3)
60+
activerecord (= 7.0.3)
61+
activesupport (= 7.0.3)
62+
marcel (~> 1.0)
63+
mini_mime (>= 1.1.0)
64+
activesupport (7.0.3)
65+
concurrent-ruby (~> 1.0, >= 1.0.2)
66+
i18n (>= 1.6, < 2)
67+
minitest (>= 5.1)
68+
tzinfo (~> 2.0)
69+
bindex (0.8.1)
70+
bootsnap (1.12.0)
71+
msgpack (~> 1.2)
72+
builder (3.2.4)
73+
byebug (11.1.3)
74+
coderay (1.1.3)
75+
concurrent-ruby (1.1.10)
76+
crass (1.0.6)
77+
digest (3.1.0)
78+
erubi (1.10.0)
79+
globalid (1.0.0)
80+
activesupport (>= 5.0)
81+
graphiql-rails (1.8.0)
82+
railties
83+
sprockets-rails
84+
graphql (2.0.9)
85+
i18n (1.10.0)
86+
concurrent-ruby (~> 1.0)
87+
loofah (2.18.0)
88+
crass (~> 1.0.2)
89+
nokogiri (>= 1.5.9)
90+
mail (2.7.1)
91+
mini_mime (>= 0.1.1)
92+
marcel (1.0.2)
93+
method_source (1.0.0)
94+
mini_mime (1.1.2)
95+
minitest (5.15.0)
96+
msgpack (1.5.2)
97+
net-imap (0.2.3)
98+
digest
99+
net-protocol
100+
strscan
101+
net-pop (0.1.1)
102+
digest
103+
net-protocol
104+
timeout
105+
net-protocol (0.1.3)
106+
timeout
107+
net-smtp (0.3.1)
108+
digest
109+
net-protocol
110+
timeout
111+
nio4r (2.5.8)
112+
nokogiri (1.13.6-arm64-darwin)
113+
racc (~> 1.4)
114+
pg (1.3.5)
115+
pry (0.13.1)
116+
coderay (~> 1.1)
117+
method_source (~> 1.0)
118+
pry-byebug (3.9.0)
119+
byebug (~> 11.0)
120+
pry (~> 0.13.0)
121+
pry-rails (0.3.9)
122+
pry (>= 0.10.4)
123+
puma (5.6.4)
124+
nio4r (~> 2.0)
125+
racc (1.6.0)
126+
rack (2.2.3.1)
127+
rack-test (1.1.0)
128+
rack (>= 1.0, < 3)
129+
rails (7.0.3)
130+
actioncable (= 7.0.3)
131+
actionmailbox (= 7.0.3)
132+
actionmailer (= 7.0.3)
133+
actionpack (= 7.0.3)
134+
actiontext (= 7.0.3)
135+
actionview (= 7.0.3)
136+
activejob (= 7.0.3)
137+
activemodel (= 7.0.3)
138+
activerecord (= 7.0.3)
139+
activestorage (= 7.0.3)
140+
activesupport (= 7.0.3)
141+
bundler (>= 1.15.0)
142+
railties (= 7.0.3)
143+
rails-dom-testing (2.0.3)
144+
activesupport (>= 4.2.0)
145+
nokogiri (>= 1.6)
146+
rails-html-sanitizer (1.4.2)
147+
loofah (~> 2.3)
148+
railties (7.0.3)
149+
actionpack (= 7.0.3)
150+
activesupport (= 7.0.3)
151+
method_source
152+
rake (>= 12.2)
153+
thor (~> 1.0)
154+
zeitwerk (~> 2.5)
155+
rake (13.0.6)
156+
sprockets (4.0.3)
157+
concurrent-ruby (~> 1.0)
158+
rack (> 1, < 3)
159+
sprockets-rails (3.4.2)
160+
actionpack (>= 5.2)
161+
activesupport (>= 5.2)
162+
sprockets (>= 3.0.0)
163+
strscan (3.0.3)
164+
thor (1.2.1)
165+
timeout (0.3.0)
166+
tzinfo (2.0.4)
167+
concurrent-ruby (~> 1.0)
168+
web-console (4.2.0)
169+
actionview (>= 6.0.0)
170+
activemodel (>= 6.0.0)
171+
bindex (>= 0.4.0)
172+
railties (>= 6.0.0)
173+
websocket-driver (0.7.5)
174+
websocket-extensions (>= 0.1.0)
175+
websocket-extensions (0.1.5)
176+
zeitwerk (2.5.4)
177+
178+
PLATFORMS
179+
arm64-darwin-21
180+
181+
DEPENDENCIES
182+
bootsnap
183+
graphiql-rails
184+
graphql
185+
pg (~> 1.1)
186+
pry-byebug
187+
pry-rails
188+
puma (~> 5.0)
189+
rails (~> 7.0.3)
190+
sprockets-rails
191+
web-console
192+
193+
RUBY VERSION
194+
ruby 3.1.2p20
195+
196+
BUNDLED WITH
197+
2.3.13

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# README
2+
3+
This README would normally document whatever steps are necessary to get the
4+
application up and running.
5+
6+
Things you may want to cover:
7+
8+
* Ruby version
9+
10+
* System dependencies
11+
12+
* Configuration
13+
14+
* Database creation
15+
16+
* Database initialization
17+
18+
* How to run the test suite
19+
20+
* Services (job queues, cache servers, search engines, etc.)
21+
22+
* Deployment instructions
23+
24+
* ...

Rakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require_relative "config/application"
5+
6+
Rails.application.load_tasks

app/assets/config/manifest.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
//= link_tree ../images
2+
//= link_directory ../stylesheets .css

app/assets/images/.keep

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* This is a manifest file that'll be compiled into application.css, which will include all the files
3+
* listed below.
4+
*
5+
* Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
6+
* vendor/assets/stylesheets directory can be referenced here using a relative path.
7+
*
8+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
9+
* compiled file so the styles you add here take precedence over styles defined in any other CSS
10+
* files in this directory. Styles in this file should be added after the last require_* statement.
11+
* It is generally better to create a new file per style scope.
12+
*
13+
*= require_tree .
14+
*= require_self
15+
*/

0 commit comments

Comments
 (0)