Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
Co-authored-by: Subin <[email protected]>
Co-authored-by: Manoj <[email protected]>
Co-authored-by: Nithin <[email protected]>
  • Loading branch information
4 people committed Aug 14, 2019
0 parents commit 2a34255
Show file tree
Hide file tree
Showing 537 changed files with 27,318 additions and 0 deletions.
1 change: 1 addition & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
defaults
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# 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 the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore Byebug command history file.
.byebug_history
config/database.yml
.DS_Store
*.log
# Ignore application configuration
node_modules
13 changes: 13 additions & 0 deletions Capfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Load DSL and Setup Up Stages
require 'capistrano/setup'
require 'capistrano/deploy'

require 'capistrano/rails'
require 'capistrano/bundler'
require 'capistrano/rvm'
require 'capistrano/puma'
install_plugin Capistrano::Puma

# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }

69 changes: 69 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
source 'https://rubygems.org'

gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'sass-rails', '~> 5.0'
gem 'puma', '~> 3.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
gem 'redis', '~> 3.0'
gem 'devise'
gem 'pg'
gem 'facebook-messenger', '~> 0.11.1'
gem 'sidekiq'
gem "koala"
gem 'omniauth-facebook'
gem 'rest-client'
gem 'telegram-bot-ruby'
gem 'devise_token_auth'
gem 'pusher'
gem 'responders'
gem 'kaminari'
gem 'rack-cors', :require => 'rack/cors'
gem 'acts-as-taggable-on', '~> 4.0'
gem 'sinatra', github: 'sinatra'
gem 'wisper', '2.0.0'
gem 'nightfury', '~> 1.0', '>= 1.0.1'
gem 'redis-namespace'
gem 'redis-rack-cache'
gem 'redis-rails'
gem "figaro"
gem "pundit"
gem 'carrierwave-aws'
gem "mini_magick"
gem "sentry-raven"
gem "valid_email2"
gem 'hashie'
gem 'chargebee', '~>2'
gem 'poltergeist'
gem 'phantomjs', :require => 'phantomjs/poltergeist'
gem 'time_diff'
gem 'fog-digitalocean'
gem 'fog-aws'

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'capistrano', require: false
gem 'capistrano-rvm', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano3-puma', require: false
end

group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'seed_dump'
gem 'mailcatcher'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'webpacker'
Loading

0 comments on commit 2a34255

Please sign in to comment.