-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6538c23
Showing
440 changed files
with
25,352 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
defaults |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.editorconfig | ||
.env | ||
.gitignore | ||
Dockerfile | ||
*.md | ||
deploy | ||
log | ||
tmp | ||
node_modules | ||
app/javascript | ||
Caddyfile | ||
package.json | ||
yarn.lock | ||
postcss.config.js | ||
babel.config.js | ||
aiven.json | ||
.eslint* | ||
.bundle | ||
.ruby-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
build/* | ||
dist/* | ||
/public | ||
node_modules | ||
/lib | ||
/deploy | ||
/db | ||
/log | ||
/config | ||
/bin | ||
/app/concepts | ||
/app/controllers | ||
/app/models | ||
/app/serializers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true | ||
}, | ||
'extends': [ | ||
'plugin:vue/essential', | ||
'@vue/standard' | ||
], | ||
rules: { | ||
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' | ||
}, | ||
parserOptions: { | ||
parser: 'babel-eslint' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 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' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
*.key | ||
|
||
.byebug_history | ||
/public/assets | ||
/public/packs | ||
# Ignore master key for decrypting credentials and more. | ||
/config/master.key | ||
.idea | ||
.env* | ||
node_modules | ||
.DS_Store | ||
|
||
/config/credentials/production.key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.7.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
require "capistrano/setup" | ||
require "capistrano/deploy" | ||
require "capistrano/scm/git" | ||
require "capistrano/rvm" | ||
require "capistrano/bundler" | ||
require 'capistrano/rails/assets' | ||
require 'capistrano/rails/migrations' | ||
require 'capistrano/passenger' | ||
|
||
install_plugin Capistrano::SCM::Git | ||
|
||
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
source 'https://rubygems.org' | ||
|
||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
ruby '2.7.1' | ||
|
||
# Field Encryption | ||
gem 'lockbox' | ||
# Authorization Toolkit | ||
gem 'pundit', '~> 2.1.0' | ||
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker | ||
gem 'webpacker', '~> 5.2.1' | ||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '~> 6.0.3.4' | ||
# Use postgresql as the database for Active Record | ||
gem 'pg', '>= 0.18', '< 2.0' | ||
# Use Puma as the app server | ||
gem 'puma', '~> 4.3.5' | ||
# Reduces boot times through caching; required in config/boot.rb | ||
gem 'bootsnap', '>= 1.4.0', require: false | ||
# RabbitMQ client | ||
gem 'bunny', '~> 2.16.1' | ||
# Modern HTTP client | ||
gem 'httparty', '~> 0.18.1' | ||
# Pusher client | ||
gem 'pusher', '~> 1.3.3' | ||
# ActiveModel JSON serializer | ||
gem "active_model_serializers", '~> 0.10.10' | ||
# Telegram bot | ||
gem 'telegram-bot-ruby', '~> 0.12.0' | ||
# Pagination | ||
gem 'will_paginate', '~> 3.3.0' | ||
# API pagination | ||
gem 'api-pagination', '~> 4.8.2' | ||
# Encryption | ||
gem 'bcrypt', '~> 3.1.16' | ||
# AWS SDK | ||
gem 'aws-sdk-s3', '~> 1' | ||
# AWS IAM | ||
gem 'aws-sdk-iam', '~> 1' | ||
# Rate Limiting middleware | ||
gem 'rack-attack', '~> 6.3.1' | ||
# CORS | ||
gem 'rack-cors', '~> 1.1.1' | ||
# 2FA | ||
gem 'active_model_otp', '~> 2.0.1' | ||
# Omniauth | ||
gem 'omniauth', '~> 1.9.1' | ||
# Omniauth github | ||
gem 'omniauth-github', github: 'omniauth/omniauth-github', branch: 'master' | ||
# Omniauth google | ||
gem 'omniauth-google-oauth2', '~> 0.8.0' | ||
# PDF generator | ||
gem 'wicked_pdf', '~> 2.1.0' | ||
# PDF generator library | ||
gem 'wkhtmltopdf-binary', '~> 0.12.6.3' | ||
# recaptcha | ||
gem 'recaptcha', github: 'ambethia/recaptcha' | ||
# Handling of poweroff tasks via RabbitMQ | ||
gem 'sneakers', '~> 2.12.0' | ||
# Deployment | ||
group :development do | ||
gem 'capistrano', require: false | ||
gem 'capistrano-rvm', require: false | ||
gem 'capistrano-rails', require: false | ||
gem 'capistrano-bundler', require: false | ||
gem 'capistrano-passenger', require: false | ||
gem 'listen', '>= 3.0.5', '< 3.2' | ||
end | ||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
Oops, something went wrong.