Commonfare-net / commonfare-rails

Commonfare.net, the Rails version

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Commonfare.net

Setup the development environment with Docker

docker-sync

VERY IMPORTANT FOR macOS to have reasonable speeds when accessing assets in development.

  1. Install the gems
gem install docker-sync docker-compose
  1. Install OS specific devDependencies: https://github.com/EugenMayer/docker-sync/wiki/1.-Installation#os-specific

or just if you use MacOS

brew install unison
brew install eugenmayer/dockersync/unox
  1. Build the images following the instructions below

Setup the environment

Copy app_variables.env.example to app_variables.env and change the variables to your values.

Create these empty files, they will be replaced with the actual keys by the SWAPI services.

touch swapi-commoncoin-conf/apikey.yaml
touch swapi-santacoin-conf/apikey.yaml

Building images

Build the images and run the containers:

docker-compose build
docker-compose up -d

Create the database and run migrations

docker-compose run --rm app rake db:create
docker-compose run --rm app rake db:migrate

We use yarn for managing npm packages, so install it on your machine and run

yarn install

Start and stop containers

Using docker-sync (recommended on macOS)

docker-sync-stack start
# CTRL+C to stop

This will take a long time the first time you start.

See https://github.com/EugenMayer/docker-sync/wiki/2.2-sync-stack-commands

Using docker-compose

Use up and down just to start up/shut down the rails server.

docker-compose up -d
docker-compose down

Alternatively, you can use start, stop, restart like this:

docker-compose start
docker-compose stop
docker-compose restart

Gemfile modifications

Every time you modify the Gemfile you have to reinstall the gems and update the Gemfile.lock, then rebuild the docker image of the Rails app, so:

docker-compose run --rm app bundle install
docker-compose build
docker-compose up -d

This will re-create the image so the bundle will take quite some time.

This will recreate only the Rails container from the new image, and not the DB container, that this way persists data.

NOTE: if you use docker-sync, the Gems will be updated on start.

Migrations

Use docker-compose exec to generate and run migrations while working with docker-sync.

docker-compose exec app rails generate migration YourMigration
docker-compose exec app rails db:migrate

Debug with pry

From this gist.

Find out the Container ID and attach to the container logs

docker ps
docker attach ID

When done, exit pry by entering exit and detach from the container with Ctrl+P Ctrl+Q. Don't use Ctrl+C because you wuld kill the rails server and so the container itself.

Translation

We use translation.io, so write text using _('Free text') and execute this command to push new keys and get new translations (You will need an APY key for this).

docker-compose run --rm app rake translation:sync

Deployment

See the wiki

About

Commonfare.net, the Rails version


Languages

Language:Ruby 43.1%Language:HTML 38.9%Language:JavaScript 10.4%Language:SCSS 6.7%Language:CoffeeScript 0.5%Language:Dockerfile 0.2%Language:CSS 0.1%Language:Shell 0.0%