-
- Downloads
Implementing PostgreSQL, adding creator and invitees to model, fixing gemfile, fixing database.yml
Showing
- Dockerfile 17 additions, 9 deletionsDockerfile
- Gemfile 1 addition, 3 deletionsGemfile
- Gemfile.lock 58 additions, 63 deletionsGemfile.lock
- app/controllers/events_controller.rb 3 additions, 2 deletionsapp/controllers/events_controller.rb
- config/database.yml 16 additions, 51 deletionsconfig/database.yml
- config/routes.rb 8 additions, 0 deletionsconfig/routes.rb
- db/migrate/20220415153430_create_events.rb 0 additions, 1 deletiondb/migrate/20220415153430_create_events.rb
- db/migrate/20220501134156_add_creator_to_event.rb 5 additions, 0 deletionsdb/migrate/20220501134156_add_creator_to_event.rb
- db/migrate/20220501142617_add_invitees_to_event.rb 5 additions, 0 deletionsdb/migrate/20220501142617_add_invitees_to_event.rb
- db/schema.rb 7 additions, 2 deletionsdb/schema.rb
- docker-compose.yml 14 additions, 10 deletionsdocker-compose.yml
- entrypoint.sh 60 additions, 4 deletionsentrypoint.sh
... | @@ -6,7 +6,7 @@ ruby '2.7.0' | ... | @@ -6,7 +6,7 @@ ruby '2.7.0' |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' | ||
gem 'rails', '~> 6.1.5' | gem 'rails', '~> 6.1.5' | ||
# Use mysql as the database for Active Record | # Use mysql as the database for Active Record | ||
gem 'mysql2', '~> 0.5' | gem 'pg' | ||
# Use Puma as the app server | # Use Puma as the app server | ||
gem 'puma', '~> 5.0' | gem 'puma', '~> 5.0' | ||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
... | @@ -33,8 +33,6 @@ end | ... | @@ -33,8 +33,6 @@ end |
group :development do | group :development do | ||
gem 'listen', '~> 3.3' | gem 'listen', '~> 3.3' | ||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
gem 'spring' | |||
end | end | ||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
Please register or sign in to comment