Skip to content

Commit dae1e44

Browse files
committed
initial commit
0 parents  commit dae1e44

File tree

100 files changed

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

100 files changed

+9187
-0
lines changed

.browserslistrc

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

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
25+
/public/assets
26+
.byebug_history
27+
28+
# Ignore master key for decrypting credentials and more.
29+
/config/master.key
30+
31+
/public/packs
32+
/public/packs-test
33+
/node_modules
34+
/yarn-error.log
35+
yarn-debug.log*
36+
.yarn-integrity

.ruby-version

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

.tool-versions

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

Gemfile

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.7.1'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem 'rails', '~> 6.0.3', '>= 6.0.3.2'
8+
# Use postgresql as the database for Active Record
9+
gem 'pg', '>= 0.18', '< 2.0'
10+
# Use Puma as the app server
11+
gem 'puma', '~> 4.1'
12+
# Use SCSS for stylesheets
13+
gem 'sass-rails', '>= 6'
14+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
15+
gem 'webpacker', '~> 4.0'
16+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
17+
gem 'turbolinks', '~> 5'
18+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
19+
gem 'jbuilder', '~> 2.7'
20+
# Use Redis adapter to run Action Cable in production
21+
# gem 'redis', '~> 4.0'
22+
# Use Active Model has_secure_password
23+
# gem 'bcrypt', '~> 3.1.7'
24+
25+
# Use Active Storage variant
26+
# gem 'image_processing', '~> 1.2'
27+
28+
# Reduces boot times through caching; required in config/boot.rb
29+
gem 'bootsnap', '>= 1.4.2', require: false
30+
31+
group :development, :test do
32+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
33+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
34+
end
35+
36+
group :development do
37+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
38+
gem 'web-console', '>= 3.3.0'
39+
gem 'listen', '~> 3.2'
40+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
41+
gem 'spring'
42+
gem 'spring-watcher-listen', '~> 2.0.0'
43+
end
44+
45+
group :test do
46+
# Adds support for Capybara system testing and selenium driver
47+
gem 'capybara', '>= 2.15'
48+
gem 'selenium-webdriver'
49+
# Easy installation and use of web drivers to run system tests with browsers
50+
gem 'webdrivers'
51+
end
52+
53+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
54+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 223 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,223 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (6.0.3.2)
5+
actionpack (= 6.0.3.2)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailbox (6.0.3.2)
9+
actionpack (= 6.0.3.2)
10+
activejob (= 6.0.3.2)
11+
activerecord (= 6.0.3.2)
12+
activestorage (= 6.0.3.2)
13+
activesupport (= 6.0.3.2)
14+
mail (>= 2.7.1)
15+
actionmailer (6.0.3.2)
16+
actionpack (= 6.0.3.2)
17+
actionview (= 6.0.3.2)
18+
activejob (= 6.0.3.2)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 2.0)
21+
actionpack (6.0.3.2)
22+
actionview (= 6.0.3.2)
23+
activesupport (= 6.0.3.2)
24+
rack (~> 2.0, >= 2.0.8)
25+
rack-test (>= 0.6.3)
26+
rails-dom-testing (~> 2.0)
27+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
28+
actiontext (6.0.3.2)
29+
actionpack (= 6.0.3.2)
30+
activerecord (= 6.0.3.2)
31+
activestorage (= 6.0.3.2)
32+
activesupport (= 6.0.3.2)
33+
nokogiri (>= 1.8.5)
34+
actionview (6.0.3.2)
35+
activesupport (= 6.0.3.2)
36+
builder (~> 3.1)
37+
erubi (~> 1.4)
38+
rails-dom-testing (~> 2.0)
39+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
40+
activejob (6.0.3.2)
41+
activesupport (= 6.0.3.2)
42+
globalid (>= 0.3.6)
43+
activemodel (6.0.3.2)
44+
activesupport (= 6.0.3.2)
45+
activerecord (6.0.3.2)
46+
activemodel (= 6.0.3.2)
47+
activesupport (= 6.0.3.2)
48+
activestorage (6.0.3.2)
49+
actionpack (= 6.0.3.2)
50+
activejob (= 6.0.3.2)
51+
activerecord (= 6.0.3.2)
52+
marcel (~> 0.3.1)
53+
activesupport (6.0.3.2)
54+
concurrent-ruby (~> 1.0, >= 1.0.2)
55+
i18n (>= 0.7, < 2)
56+
minitest (~> 5.1)
57+
tzinfo (~> 1.1)
58+
zeitwerk (~> 2.2, >= 2.2.2)
59+
addressable (2.7.0)
60+
public_suffix (>= 2.0.2, < 5.0)
61+
bindex (0.8.1)
62+
bootsnap (1.4.6)
63+
msgpack (~> 1.0)
64+
builder (3.2.4)
65+
byebug (11.1.3)
66+
capybara (3.33.0)
67+
addressable
68+
mini_mime (>= 0.1.3)
69+
nokogiri (~> 1.8)
70+
rack (>= 1.6.0)
71+
rack-test (>= 0.6.3)
72+
regexp_parser (~> 1.5)
73+
xpath (~> 3.2)
74+
childprocess (3.0.0)
75+
concurrent-ruby (1.1.6)
76+
crass (1.0.6)
77+
erubi (1.9.0)
78+
ffi (1.13.1)
79+
globalid (0.4.2)
80+
activesupport (>= 4.2.0)
81+
i18n (1.8.3)
82+
concurrent-ruby (~> 1.0)
83+
jbuilder (2.10.0)
84+
activesupport (>= 5.0.0)
85+
listen (3.2.1)
86+
rb-fsevent (~> 0.10, >= 0.10.3)
87+
rb-inotify (~> 0.9, >= 0.9.10)
88+
loofah (2.6.0)
89+
crass (~> 1.0.2)
90+
nokogiri (>= 1.5.9)
91+
mail (2.7.1)
92+
mini_mime (>= 0.1.1)
93+
marcel (0.3.3)
94+
mimemagic (~> 0.3.2)
95+
method_source (1.0.0)
96+
mimemagic (0.3.5)
97+
mini_mime (1.0.2)
98+
mini_portile2 (2.4.0)
99+
minitest (5.14.1)
100+
msgpack (1.3.3)
101+
nio4r (2.5.2)
102+
nokogiri (1.10.10)
103+
mini_portile2 (~> 2.4.0)
104+
pg (1.2.3)
105+
public_suffix (4.0.5)
106+
puma (4.3.5)
107+
nio4r (~> 2.0)
108+
rack (2.2.3)
109+
rack-proxy (0.6.5)
110+
rack
111+
rack-test (1.1.0)
112+
rack (>= 1.0, < 3)
113+
rails (6.0.3.2)
114+
actioncable (= 6.0.3.2)
115+
actionmailbox (= 6.0.3.2)
116+
actionmailer (= 6.0.3.2)
117+
actionpack (= 6.0.3.2)
118+
actiontext (= 6.0.3.2)
119+
actionview (= 6.0.3.2)
120+
activejob (= 6.0.3.2)
121+
activemodel (= 6.0.3.2)
122+
activerecord (= 6.0.3.2)
123+
activestorage (= 6.0.3.2)
124+
activesupport (= 6.0.3.2)
125+
bundler (>= 1.3.0)
126+
railties (= 6.0.3.2)
127+
sprockets-rails (>= 2.0.0)
128+
rails-dom-testing (2.0.3)
129+
activesupport (>= 4.2.0)
130+
nokogiri (>= 1.6)
131+
rails-html-sanitizer (1.3.0)
132+
loofah (~> 2.3)
133+
railties (6.0.3.2)
134+
actionpack (= 6.0.3.2)
135+
activesupport (= 6.0.3.2)
136+
method_source
137+
rake (>= 0.8.7)
138+
thor (>= 0.20.3, < 2.0)
139+
rake (13.0.1)
140+
rb-fsevent (0.10.4)
141+
rb-inotify (0.10.1)
142+
ffi (~> 1.0)
143+
regexp_parser (1.7.1)
144+
rubyzip (2.3.0)
145+
sass-rails (6.0.0)
146+
sassc-rails (~> 2.1, >= 2.1.1)
147+
sassc (2.4.0)
148+
ffi (~> 1.9)
149+
sassc-rails (2.1.2)
150+
railties (>= 4.0.0)
151+
sassc (>= 2.0)
152+
sprockets (> 3.0)
153+
sprockets-rails
154+
tilt
155+
selenium-webdriver (3.142.7)
156+
childprocess (>= 0.5, < 4.0)
157+
rubyzip (>= 1.2.2)
158+
spring (2.1.0)
159+
spring-watcher-listen (2.0.1)
160+
listen (>= 2.7, < 4.0)
161+
spring (>= 1.2, < 3.0)
162+
sprockets (4.0.2)
163+
concurrent-ruby (~> 1.0)
164+
rack (> 1, < 3)
165+
sprockets-rails (3.2.1)
166+
actionpack (>= 4.0)
167+
activesupport (>= 4.0)
168+
sprockets (>= 3.0.0)
169+
thor (1.0.1)
170+
thread_safe (0.3.6)
171+
tilt (2.0.10)
172+
turbolinks (5.2.1)
173+
turbolinks-source (~> 5.2)
174+
turbolinks-source (5.2.0)
175+
tzinfo (1.2.7)
176+
thread_safe (~> 0.1)
177+
web-console (4.0.4)
178+
actionview (>= 6.0.0)
179+
activemodel (>= 6.0.0)
180+
bindex (>= 0.4.0)
181+
railties (>= 6.0.0)
182+
webdrivers (4.4.1)
183+
nokogiri (~> 1.6)
184+
rubyzip (>= 1.3.0)
185+
selenium-webdriver (>= 3.0, < 4.0)
186+
webpacker (4.2.2)
187+
activesupport (>= 4.2)
188+
rack-proxy (>= 0.6.1)
189+
railties (>= 4.2)
190+
websocket-driver (0.7.3)
191+
websocket-extensions (>= 0.1.0)
192+
websocket-extensions (0.1.5)
193+
xpath (3.2.0)
194+
nokogiri (~> 1.8)
195+
zeitwerk (2.4.0)
196+
197+
PLATFORMS
198+
ruby
199+
200+
DEPENDENCIES
201+
bootsnap (>= 1.4.2)
202+
byebug
203+
capybara (>= 2.15)
204+
jbuilder (~> 2.7)
205+
listen (~> 3.2)
206+
pg (>= 0.18, < 2.0)
207+
puma (~> 4.1)
208+
rails (~> 6.0.3, >= 6.0.3.2)
209+
sass-rails (>= 6)
210+
selenium-webdriver
211+
spring
212+
spring-watcher-listen (~> 2.0.0)
213+
turbolinks (~> 5)
214+
tzinfo-data
215+
web-console (>= 3.3.0)
216+
webdrivers
217+
webpacker (~> 4.0)
218+
219+
RUBY VERSION
220+
ruby 2.7.1p83
221+
222+
BUNDLED WITH
223+
2.1.4

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Deploy a Ruby on Rails App on Render
2+
3+
This is a sample [Ruby on Rails](https://rubyonrails.org/) app set up to work with on Render.
4+
5+
The sample app is deployed at https://rails.onrender.com.
6+
7+
## Deployment on Render
8+
9+
Fork the repo and use the button below to deploy this app with one click.
10+
11+
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy)
12+
13+
To deploy manually, see the guide at https://render.com/docs/deploy-rails.

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.

app/assets/images/render.png

30.5 KB
Loading
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 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+
9+
@import "bootstrap/scss/bootstrap";
10+
11+
@import "**/*";

app/assets/stylesheets/render.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Place all the styles related to the Render controller here.
2+
// They will automatically be included in application.css.
3+
// You can use Sass (SCSS) here: https://sass-lang.com/
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module ApplicationCable
2+
class Channel < ActionCable::Channel::Base
3+
end
4+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module ApplicationCable
2+
class Connection < ActionCable::Connection::Base
3+
end
4+
end
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class ApplicationController < ActionController::Base
2+
end

app/controllers/concerns/.keep

Whitespace-only changes.

app/controllers/render_controller.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class RenderController < ApplicationController
2+
def index
3+
end
4+
end

app/helpers/application_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module ApplicationHelper
2+
end

app/helpers/render_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module RenderHelper
2+
end

app/javascript/channels/consumer.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Action Cable provides the framework to deal with WebSockets in Rails.
2+
// You can generate new channels where WebSocket features live using the `rails generate channel` command.
3+
4+
import { createConsumer } from "@rails/actioncable"
5+
6+
export default createConsumer()

app/javascript/channels/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Load all the channels within this directory and all subdirectories.
2+
// Channel files must be named *_channel.js.
3+
4+
const channels = require.context('.', true, /_channel\.js$/)
5+
channels.keys().forEach(channels)

0 commit comments

Comments
 (0)