Skip to content

Commit aa72ed7

Browse files
committed
Initial commit, public edition
0 parents  commit aa72ed7

File tree

259 files changed

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

259 files changed

+15359
-0
lines changed

.browserslistrc

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

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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 the yarn lockfile as having been generated.
7+
yarn.lock linguist-generated
8+
9+
# Mark any vendored files as having been vendored.
10+
vendor/* linguist-vendored

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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 the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-*
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
# Ignore pidfiles, but keep the directory.
21+
/tmp/pids/*
22+
!/tmp/pids/
23+
!/tmp/pids/.keep
24+
25+
# Ignore uploaded files in development.
26+
/storage/*
27+
!/storage/.keep
28+
29+
/public/assets
30+
.byebug_history
31+
32+
# Ignore master key for decrypting credentials and more.
33+
/config/master.key
34+
.idea/
35+
/public/packs
36+
/public/packs-test
37+
/node_modules
38+
/yarn-error.log
39+
yarn-debug.log*
40+
.yarn-integrity

.ruby-version

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

Gemfile

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '3.0.0'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem 'rails', '~> 6.1.0'
8+
# Use sqlite3 as the database for Active Record
9+
gem 'mysql2'
10+
# Use Puma as the app server
11+
gem 'puma', '~> 5.0'
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', '~> 5.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.4', require: false
30+
31+
gem 'algoliasearch-rails'
32+
gem 'rest-client'
33+
gem 'discordrb', '>= 3.3.0'
34+
gem 'dblruby', '>= 1.1.2.1'
35+
gem "sentry-raven"
36+
gem 'oauth'
37+
gem 'fcm'
38+
gem 'ruby-filemagic'
39+
gem 'roo'
40+
gem 'sitemap_generator'
41+
gem 'bootstrap', '~> 4.5.2'
42+
gem 'jquery-rails'
43+
gem 'aws-sdk-s3'
44+
gem 'rmagick'
45+
46+
group :development, :test do
47+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
48+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
49+
end
50+
51+
group :development do
52+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
53+
gem 'web-console', '>= 4.1.0'
54+
# Display performance information such as SQL time and flame graphs for each request in your browser.
55+
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
56+
gem 'rack-mini-profiler', '~> 2.0'
57+
gem 'listen', '~> 3.3'
58+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
59+
gem 'spring'
60+
end
61+
62+
group :test do
63+
# Adds support for Capybara system testing and selenium driver
64+
gem 'capybara', '>= 3.26'
65+
gem 'selenium-webdriver'
66+
# Easy installation and use of web drivers to run system tests with browsers
67+
gem 'webdrivers'
68+
end
69+
70+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
71+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

0 commit comments

Comments
 (0)