Skip to content

Commit 2b09a14

Browse files
committed
Initial commit
0 parents  commit 2b09a14

File tree

96 files changed

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

96 files changed

+11850
-0
lines changed

.devcontainer/devcontainer.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2+
// https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/docker-existing-docker-compose
3+
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
4+
{
5+
"name": "Existing Docker Compose (Extend)",
6+
7+
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
8+
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
9+
"dockerComposeFile": [
10+
"../docker-compose.yml",
11+
"docker-compose.yml"
12+
],
13+
14+
// The 'service' property is the name of the service for the container that VS Code should
15+
// use. Update this value and .devcontainer/docker-compose.yml to the real service name.
16+
"service": "web",
17+
18+
// The optional 'workspaceFolder' property is the path VS Code should open by default when
19+
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
20+
"workspaceFolder": "/workspace",
21+
22+
// Set *default* container specific settings.json values on container create.
23+
"settings": {},
24+
25+
// Add the IDs of extensions you want installed when the container is created.
26+
"extensions": []
27+
28+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
29+
// "forwardPorts": [],
30+
31+
// Uncomment the next line if you want start specific services in your Docker Compose config.
32+
// "runServices": [],
33+
34+
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
35+
// "shutdownAction": "none",
36+
37+
// Uncomment the next line to run commands after the container is created - for example installing curl.
38+
// "postCreateCommand": "apt-get update && apt-get install -y curl",
39+
40+
// Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root.
41+
// "remoteUser": "vscode"
42+
}

.devcontainer/docker-compose.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
version: '3.9'
2+
services:
3+
# Update this to the name of the service you want to work with in your docker-compose.yml file
4+
web:
5+
# If you want add a non-root user to your Dockerfile, you can use the "remoteUser"
6+
# property in devcontainer.json to cause VS Code its sub-processes (terminals, tasks,
7+
# debugging) to execute as the user. Uncomment the next line if you want the entire
8+
# container to run as this user instead. Note that, on Linux, you may need to
9+
# ensure the UID and GID of the container user you create matches your local user.
10+
# See https://aka.ms/vscode-remote/containers/non-root for details.
11+
#
12+
# user: vscode
13+
14+
# Uncomment if you want to override the service's Dockerfile to one in the .devcontainer
15+
# folder. Note that the path of the Dockerfile and context is relative to the *primary*
16+
# docker-compose.yml file (the first in the devcontainer.json "dockerComposeFile"
17+
# array). The sample below assumes your primary file is in the root of your project.
18+
#
19+
# build:
20+
# context: .
21+
# dockerfile: .devcontainer/Dockerfile
22+
23+
volumes:
24+
# Update this to wherever you want VS Code to mount the folder of your project
25+
- .:/workspace:cached
26+
27+
# Uncomment the next line to use Docker from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker-compose for details.
28+
# - /var/run/docker.sock:/var/run/docker.sock
29+
30+
# Uncomment the next four lines if you will use a ptrace-based debugger like C++, Go, and Rust.
31+
# cap_add:
32+
# - SYS_PTRACE
33+
# security_opt:
34+
# - seccomp:unconfined
35+
36+
# Overrides default command so things don't shut down after the process ends.
37+
command: /bin/sh -c "while sleep 1000; do :; done"
38+

.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALLOWED_ORIGINS=localhost:3000

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALLOWED_ORIGINS=localhost:3002,localhost:3000

.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

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

.rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--require spec_helper

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-3.0.3

Dockerfile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# syntax=docker/dockerfile:1
2+
FROM ruby:3
3+
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
4+
WORKDIR /app
5+
COPY Gemfile /app/Gemfile
6+
COPY Gemfile.lock /app/Gemfile.lock
7+
RUN bundle install
8+
9+
# Add a script to be executed every time the container starts.
10+
COPY entrypoint.sh /usr/bin/
11+
RUN chmod +x /usr/bin/entrypoint.sh
12+
ENTRYPOINT ["entrypoint.sh"]
13+
EXPOSE 3009
14+
15+
# Configure the main process to run when running the image
16+
CMD ["rails", "server", "-p", "3009", "-b", "0.0.0.0"]

Gemfile

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '3.0.3'
5+
6+
gem 'bootsnap', require: false
7+
gem 'importmap-rails'
8+
gem 'jbuilder'
9+
gem 'pg', '~> 1.1'
10+
gem 'puma', '~> 5.0'
11+
gem 'rack-cors'
12+
gem 'rails', '~> 7.0.0'
13+
gem 'sprockets-rails'
14+
gem 'stimulus-rails'
15+
gem 'turbo-rails'
16+
17+
group :development, :test do
18+
gem 'dotenv-rails'
19+
gem 'rspec-rails'
20+
gem 'rubocop'
21+
end
22+
23+
group :development do
24+
end
25+
26+
group :test do
27+
gem 'shoulda-matchers', '~> 5.0'
28+
end

Gemfile.lock

+214
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,214 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (7.0.0)
5+
actionpack (= 7.0.0)
6+
activesupport (= 7.0.0)
7+
nio4r (~> 2.0)
8+
websocket-driver (>= 0.6.1)
9+
actionmailbox (7.0.0)
10+
actionpack (= 7.0.0)
11+
activejob (= 7.0.0)
12+
activerecord (= 7.0.0)
13+
activestorage (= 7.0.0)
14+
activesupport (= 7.0.0)
15+
mail (>= 2.7.1)
16+
actionmailer (7.0.0)
17+
actionpack (= 7.0.0)
18+
actionview (= 7.0.0)
19+
activejob (= 7.0.0)
20+
activesupport (= 7.0.0)
21+
mail (~> 2.5, >= 2.5.4)
22+
rails-dom-testing (~> 2.0)
23+
actionpack (7.0.0)
24+
actionview (= 7.0.0)
25+
activesupport (= 7.0.0)
26+
rack (~> 2.0, >= 2.2.0)
27+
rack-test (>= 0.6.3)
28+
rails-dom-testing (~> 2.0)
29+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
30+
actiontext (7.0.0)
31+
actionpack (= 7.0.0)
32+
activerecord (= 7.0.0)
33+
activestorage (= 7.0.0)
34+
activesupport (= 7.0.0)
35+
globalid (>= 0.6.0)
36+
nokogiri (>= 1.8.5)
37+
actionview (7.0.0)
38+
activesupport (= 7.0.0)
39+
builder (~> 3.1)
40+
erubi (~> 1.4)
41+
rails-dom-testing (~> 2.0)
42+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
43+
activejob (7.0.0)
44+
activesupport (= 7.0.0)
45+
globalid (>= 0.3.6)
46+
activemodel (7.0.0)
47+
activesupport (= 7.0.0)
48+
activerecord (7.0.0)
49+
activemodel (= 7.0.0)
50+
activesupport (= 7.0.0)
51+
activestorage (7.0.0)
52+
actionpack (= 7.0.0)
53+
activejob (= 7.0.0)
54+
activerecord (= 7.0.0)
55+
activesupport (= 7.0.0)
56+
marcel (~> 1.0)
57+
mini_mime (>= 1.1.0)
58+
activesupport (7.0.0)
59+
concurrent-ruby (~> 1.0, >= 1.0.2)
60+
i18n (>= 1.6, < 2)
61+
minitest (>= 5.1)
62+
tzinfo (~> 2.0)
63+
ast (2.4.2)
64+
bootsnap (1.9.3)
65+
msgpack (~> 1.0)
66+
builder (3.2.4)
67+
concurrent-ruby (1.1.9)
68+
crass (1.0.6)
69+
diff-lcs (1.4.4)
70+
dotenv (2.7.6)
71+
dotenv-rails (2.7.6)
72+
dotenv (= 2.7.6)
73+
railties (>= 3.2)
74+
erubi (1.10.0)
75+
globalid (1.0.0)
76+
activesupport (>= 5.0)
77+
i18n (1.8.11)
78+
concurrent-ruby (~> 1.0)
79+
importmap-rails (1.0.1)
80+
actionpack (>= 6.0.0)
81+
railties (>= 6.0.0)
82+
jbuilder (2.11.4)
83+
activesupport (>= 5.0.0)
84+
loofah (2.13.0)
85+
crass (~> 1.0.2)
86+
nokogiri (>= 1.5.9)
87+
mail (2.7.1)
88+
mini_mime (>= 0.1.1)
89+
marcel (1.0.2)
90+
method_source (1.0.0)
91+
mini_mime (1.1.2)
92+
minitest (5.15.0)
93+
msgpack (1.4.2)
94+
nio4r (2.5.8)
95+
nokogiri (1.12.5-x86_64-linux)
96+
racc (~> 1.4)
97+
parallel (1.21.0)
98+
parser (3.0.3.2)
99+
ast (~> 2.4.1)
100+
pg (1.2.3)
101+
puma (5.5.2)
102+
nio4r (~> 2.0)
103+
racc (1.6.0)
104+
rack (2.2.3)
105+
rack-cors (1.1.1)
106+
rack (>= 2.0.0)
107+
rack-test (1.1.0)
108+
rack (>= 1.0, < 3)
109+
rails (7.0.0)
110+
actioncable (= 7.0.0)
111+
actionmailbox (= 7.0.0)
112+
actionmailer (= 7.0.0)
113+
actionpack (= 7.0.0)
114+
actiontext (= 7.0.0)
115+
actionview (= 7.0.0)
116+
activejob (= 7.0.0)
117+
activemodel (= 7.0.0)
118+
activerecord (= 7.0.0)
119+
activestorage (= 7.0.0)
120+
activesupport (= 7.0.0)
121+
bundler (>= 1.15.0)
122+
railties (= 7.0.0)
123+
rails-dom-testing (2.0.3)
124+
activesupport (>= 4.2.0)
125+
nokogiri (>= 1.6)
126+
rails-html-sanitizer (1.4.2)
127+
loofah (~> 2.3)
128+
railties (7.0.0)
129+
actionpack (= 7.0.0)
130+
activesupport (= 7.0.0)
131+
method_source
132+
rake (>= 12.2)
133+
thor (~> 1.0)
134+
zeitwerk (~> 2.5)
135+
rainbow (3.0.0)
136+
rake (13.0.6)
137+
regexp_parser (2.2.0)
138+
rexml (3.2.5)
139+
rspec-core (3.10.1)
140+
rspec-support (~> 3.10.0)
141+
rspec-expectations (3.10.1)
142+
diff-lcs (>= 1.2.0, < 2.0)
143+
rspec-support (~> 3.10.0)
144+
rspec-mocks (3.10.2)
145+
diff-lcs (>= 1.2.0, < 2.0)
146+
rspec-support (~> 3.10.0)
147+
rspec-rails (5.0.2)
148+
actionpack (>= 5.2)
149+
activesupport (>= 5.2)
150+
railties (>= 5.2)
151+
rspec-core (~> 3.10)
152+
rspec-expectations (~> 3.10)
153+
rspec-mocks (~> 3.10)
154+
rspec-support (~> 3.10)
155+
rspec-support (3.10.3)
156+
rubocop (1.23.0)
157+
parallel (~> 1.10)
158+
parser (>= 3.0.0.0)
159+
rainbow (>= 2.2.2, < 4.0)
160+
regexp_parser (>= 1.8, < 3.0)
161+
rexml
162+
rubocop-ast (>= 1.12.0, < 2.0)
163+
ruby-progressbar (~> 1.7)
164+
unicode-display_width (>= 1.4.0, < 3.0)
165+
rubocop-ast (1.15.0)
166+
parser (>= 3.0.1.1)
167+
ruby-progressbar (1.11.0)
168+
shoulda-matchers (5.0.0)
169+
activesupport (>= 5.2.0)
170+
sprockets (4.0.2)
171+
concurrent-ruby (~> 1.0)
172+
rack (> 1, < 3)
173+
sprockets-rails (3.4.2)
174+
actionpack (>= 5.2)
175+
activesupport (>= 5.2)
176+
sprockets (>= 3.0.0)
177+
stimulus-rails (1.0.2)
178+
railties (>= 6.0.0)
179+
thor (1.1.0)
180+
turbo-rails (1.0.0)
181+
actionpack (>= 6.0.0)
182+
railties (>= 6.0.0)
183+
tzinfo (2.0.4)
184+
concurrent-ruby (~> 1.0)
185+
unicode-display_width (2.1.0)
186+
websocket-driver (0.7.5)
187+
websocket-extensions (>= 0.1.0)
188+
websocket-extensions (0.1.5)
189+
zeitwerk (2.5.1)
190+
191+
PLATFORMS
192+
x86_64-linux
193+
194+
DEPENDENCIES
195+
bootsnap
196+
dotenv-rails
197+
importmap-rails
198+
jbuilder
199+
pg (~> 1.1)
200+
puma (~> 5.0)
201+
rack-cors
202+
rails (~> 7.0.0)
203+
rspec-rails
204+
rubocop
205+
shoulda-matchers (~> 5.0)
206+
sprockets-rails
207+
stimulus-rails
208+
turbo-rails
209+
210+
RUBY VERSION
211+
ruby 3.0.3p157
212+
213+
BUNDLED WITH
214+
2.2.32

0 commit comments

Comments
 (0)