Go to file
snogrammer 5362faccab add sidekiq gems 2021-11-03 18:35:37 -06:00
app config updates. docker build updates. 2021-06-16 18:10:02 -06:00
bin upgrade ruby, rails, gems, packages 2020-12-19 11:50:29 -07:00
config add to_bool and env_helper 2021-11-03 18:35:11 -06:00
db update seeds to use factories. update admin users view. 2021-03-28 09:48:39 -06:00
lib update views, mailers, styles, etc. 2020-04-25 19:41:40 -06:00
log initial project setup with rails, devise, activeadmin, webpacker, docker, stimulusjs, bulma. 2020-03-21 11:53:34 -06:00
public update views, mailers, styles, etc. 2020-04-25 19:41:40 -06:00
script update config. 2021-06-12 17:38:00 -06:00
spec update seeds to use factories. update admin users view. 2021-03-28 09:48:39 -06:00
tmp initial project setup with rails, devise, activeadmin, webpacker, docker, stimulusjs, bulma. 2020-03-21 11:53:34 -06:00
vendor update rails. update app config. 2021-03-26 16:13:00 -06:00
.browserslistrc initial project setup with rails, devise, activeadmin, webpacker, docker, stimulusjs, bulma. 2020-03-21 11:53:34 -06:00
.env.docker upgrade ruby, rails, gems, packages 2020-12-19 11:50:29 -07:00
.gitignore config updates. docker build updates. 2021-06-16 18:10:02 -06:00
.rspec add rspec to template. 2020-03-22 14:12:47 -06:00
.rubocop.yml add rspec to template. 2020-03-22 14:12:47 -06:00
.ruby-version upgrade ruby, rails, gems, packages 2020-12-19 11:50:29 -07:00
Dockerfile upgrade ruby, rails, gems, packages 2020-12-19 11:50:29 -07:00
Dockerfile.production config updates. docker build updates. 2021-06-16 18:10:02 -06:00
Gemfile add sidekiq gems 2021-11-03 18:35:37 -06:00
Gemfile.lock update rails. update app config. 2021-03-26 16:13:00 -06:00
Procfile update views, mailers, styles, etc. 2020-04-25 19:41:40 -06:00
README.md config updates. docker build updates. 2021-06-16 18:10:02 -06:00
Rakefile initial project setup with rails, devise, activeadmin, webpacker, docker, stimulusjs, bulma. 2020-03-21 11:53:34 -06:00
babel.config.js upgrade ruby, rails, gems, packages 2020-12-19 11:50:29 -07:00
config.ru initial project setup with rails, devise, activeadmin, webpacker, docker, stimulusjs, bulma. 2020-03-21 11:53:34 -06:00
docker-compose.yml update seeds to use factories. update admin users view. 2021-03-28 09:48:39 -06:00
package.json upgrade ruby, rails, gems, packages 2020-12-19 11:50:29 -07:00
postcss.config.js initial project setup with rails, devise, activeadmin, webpacker, docker, stimulusjs, bulma. 2020-03-21 11:53:34 -06:00
yarn.lock upgrade ruby, rails, gems, packages 2020-12-19 11:50:29 -07:00

README.md

Rails 6 template

This repo is a designed to be a Dockerized Rails 6 template:

Setup

  • bundle update
  • Download latest copy of FontAwesome and replace vendor/fontawesome-pro/** (npm auth access has expired)
  • yarn install --check-files
  • Find/replace all TODO
  • docker-compose up --build
  • docker-compose run app rails db:setup

Dependencies

This service has dependencies on the following services.

  1. Ruby 2.6.5
  2. Rails 6.x
  3. Postgres
  4. Redis
  5. Webpacker
  6. Yarn
  7. Stimulus

Docker

Follow the Docker Getting Started guide to get docker, docker-machine and docker-compose. This project contains helper scripts to build, test, & push images to dockerhub.

1. Build image: $ script/build

  1. Run the test suite: $ script/test

Docker Compose

Docker compose is used for Jenkins and local development. Use the information below to configure each environment.

Local development

To start the application using docker compose locally:

  1. Start the services: $ docker-compose up --build
  2. Access via browser: $ open http://localhost:3000

Environment Variables

Variable Description Default
APP_NAME App name app
APP_TITLE App title TODO
DATABASE_URL Database URL postgres://localhost:5432/app_development
DB_CONNECT_TIMEOUT Db connect timeout 10
DB_MAX_CONNECTIONS Db Max Connections 16
DB_MIN_CONNECTIONS Db Minimum Connections 5
DB_SOCKET_TIMEOUT Db socket timeout 5
DB_WAIT_QUEUE_TIMEOUT Db Wait queue timeout 5
LOG_LEVEL Log level warn
REDIS_URL Redis Url redis://localhost:6379/0
SMTP_HOST Smpt address localhost
SMTP_PORT Smpt port 1025
WEBPACKER_HOST Webpacker host localhost
WEBPACKER_DEV_SERVER_HOST Webpacker dev host 0.0.0.0

TODO

  • Heroku Procfile