-
- Downloads
Adding modern CI
Showing
- .dockerignore 27 additions, 0 deletions.dockerignore
- .gitignore 7 additions, 0 deletions.gitignore
- .gitlab-ci.yml 87 additions, 0 deletions.gitlab-ci.yml
- .k8s/deployment.yaml 48 additions, 0 deletions.k8s/deployment.yaml
- .k8s/ingress.yaml 17 additions, 0 deletions.k8s/ingress.yaml
- .k8s/secret.yaml 8 additions, 0 deletions.k8s/secret.yaml
- .k8s/service.yaml 17 additions, 0 deletions.k8s/service.yaml
- Dockerfile 15 additions, 0 deletionsDockerfile
- Gemfile 2 additions, 1 deletionGemfile
- Gemfile.lock 0 additions, 222 deletionsGemfile.lock
- config/database.yml 4 additions, 3 deletionsconfig/database.yml
- docker/entrypoint.sh 14 additions, 0 deletionsdocker/entrypoint.sh
.dockerignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.k8s/deployment.yaml
0 → 100644
.k8s/ingress.yaml
0 → 100644
.k8s/secret.yaml
0 → 100644
.k8s/service.yaml
0 → 100644
Dockerfile
0 → 100644
source 'https://rubygems.org' | source 'https://rubygems.org' | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
ruby '2.5.1' | #ruby '2.5.1' | ||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '~> 5.2.0' | gem 'rails', '~> 5.2.0' | ||
... | @@ -39,6 +39,7 @@ gem 'bootsnap', '>= 1.1.0', require: false | ... | @@ -39,6 +39,7 @@ gem 'bootsnap', '>= 1.1.0', require: false |
group :development, :test do | group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
gem 'sqlite3', '~> 1.3.6' | |||
end | end | ||
group :development do | group :development do | ||
... | ... |
Gemfile.lock
deleted
100644 → 0
docker/entrypoint.sh
0 → 100755
Please register or sign in to comment