Skip to content

Commit

Permalink
Added zinger-rails-server code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ddlogesh committed Jun 6, 2022
2 parents 2d6358e + b44c7b2 commit 3706bb2
Show file tree
Hide file tree
Showing 161 changed files with 5,349 additions and 100 deletions.
54 changes: 28 additions & 26 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
HELP.md
target/
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
.DS_Store
# 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'

.idea
*.iws
*.iml
*.ipr
# Ignore bundler config.
/.bundle

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

# Ignore uploaded files in development.
/storage/*
!/storage/.keep

/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
# Ignore database file
/docker/*
!/docker/run.sh
!/docker/Dockerfile

.vscode/
lib
src/main/resources/static/
src/main/resources/templates/
src/test
src/main/resources/application.properties
# Ignore master key for decrypting credentials and more.
/config/master.key

*/.DS_Store
.DS_Store
.idea
.byebug_history
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby-2.7.2
60 changes: 60 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '6.0.3.1'
# Use pg as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
gem 'redis', '4.1.4'
gem 'redis-namespace', '1.7.0'
gem 'sidekiq', '6.0.7'
# Use Active Model has_secure_password
gem 'bcrypt', '3.1.13'
gem 'jwt', '2.2.1'
gem 'jquery-rails', '4.4.0'
gem 'elasticsearch', '7.17.1'
gem 'searchkick', '5.0.3'
gem 'google-id-token', '1.4.2'
gem 'browser', '5.1.0'
gem 'aws-sdk-s3', '1.83.2'
gem 'rack-cors','1.1.1'
gem 'versioncake', '4.0.2'
gem 'lsuuid', '0.1.0'
gem 'shortuuid', '0.5.0'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.2'
# 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'
end

group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
end

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

0 comments on commit 3706bb2

Please sign in to comment.