This is the main Rails & Ember app for clark.de.
You may see some references to Optisure. This is the pre-public-launch project name, that may still be present in older areas of code / config.
This document is split into the following sections:
- Ruby
- Database
- Install Ember
- Install Script
- SMS Mock Service
- Database User Changes
- Running local docker images for Insign and Hermes
- CMS DataGit
- Git Commands
- Environment variables
- Seed users
- Testing
- Using Spring
- logging
- Static Page prototyping
- Livereload
- Ember Brand Config
- Settings Management
- This is work in progress but should soon help standardise development environments and make initial setup more consistent and faster
- AWS:
- Slack:
- production (
master
): [www.clark.de][production] - staging 1 (
develop
): [staging.clark.de][staging] - staging 2 http://staging-test-2.clark.de/
- ...
- staging 20 http://staging-test-20.clark.de/
Please go to the #deployments channel in Slack to see current status of the environments
Please see How to use Lex for staging deployments
Make sure these tools are installed:
xcode
(for macOS)ruby@2.6.3
postgres@9.5.x
- Ember
Install homebrew.
Install development tools
xcode-select --install
There are two options: rbenv
(recommended) and rvm
Detailed instruction can be found on the official website.
Short version of installation:
brew install rbenv
rbenv init
# list all available versions:
rbenv install -l
rbenv install 2.6.3
rbenv global 2.6.3
cd project_folder
When virtual environment was installed make sure bundler was also installed:
gem install bundler
bundle install
Detailed instruction can be found on the official website.
Short version of installation:
brew install gnupg
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E
curl -sSL https://get.rvm.io | bash -s stable
rvm install 2.6.3
In rare case the gpg --keyserver is failing, use this instead:
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
Install progress
brew install postgresql@9.5
Your postgres server should ideally run as a service on your machine, in order to have it running after system start:
cp /usr/local/Cellar/postgresql/9.5.<YOUR-VERSION>/homebrew.mxcl.postgresql<VERSION>.plist /Library/LaunchAgents/
For instance:
sudo cp /usr/local/Cellar/postgresql@9.5/9.5.22_1/homebrew.mxcl.postgresql@9.5.plist /Library/LaunchAgents/
Install a GUI for Postgres. For example PostgresAPP or PgAdmin
cd <local source dev home>
git clone https://github.com/ClarkSource/application.git
First install Volta.
# On macOS with homebrew
brew install volta
# On any other UNIX system
curl https://get.volta.sh | bash
Then install the tool chain:
volta install node
volta install yarn
volta install ember-cli
yarn # make sure to run this in the repository root!
cd client
ember s
See Setup of local Rails and Ember Development Environment for further information
For your convenience there is install script available. You can use it to setup application with ease.
You can start by simply running:
./bin/install
but there are some additional variables worth using:
DOMAIN=0.0.0.0:3000 # configure CMS and bind it to this address
SKIP_DEPENDENCIES=true # you may want to skip installing gems, postgres, etc.
DROP_DB=true # drop previously created DB before (a must unless a first installation)
APP_LOCALE=de-at # configure app to run for a specific locale (e.g Austria)
Resulting command may look like:
APP_LOCALE=de-at DOMAIN=0.0.0.0:3000 ./bin/install
If you see error related to absence of database then edit install file in bin folder and temporarily comment out following line:
system "RAILS_ENV=test bundle exec rails db:drop
Bin install with retirement seeds
./bin/setup_testdata.sh
As part of the user sign up process on production a SMS verification code is sent out. When running locally the message is saved as a local file. You may get security warnings trying to view this in the browser. Please go directly to the directy and view: eg...
application/tmp/letter_opener/1590677998_65462_b145e03/rich.html
After cloning application repository and installing app you will have two additional databases: optisure_test and optisure_development
For these databases you will need to create new user so connection will be possible:
psql
CREATE ROLE clark WITH SUPERUSER;
ALTER ROLE clark WITH LOGIN;
You can read much more details about users and roles in PostgreSQL in manual
Start the Rails Server:
cd <local dev path>/application/bin/
rails s
Start the Frontend Ember App:
cd <local dev path>/application/
yarn
cd client
ember s
There are 5 directories with seeds:
db/seeds/development
db/seeds/de-de
db/seeds/de-at
db/seeds/shared
db/seeds/custom
db/seeds/development
is used for unit tests during test_master_data
. If your unit test creates a lot of specific data then queries could be places here.
db/seeds/de-de
, db/seeds/de-at
and db/seeds/shared
those are used for unit tests only. Do not add anything in those dirs as they will be removed once we get rid from those unit tests.
db/seeds/custom
is designed to store manually added records for testing purposes e.g. the feature is under development but we want to create a DTE that has that feature flag
custom seeds should hold only upsert queries means record should be created or updated.
If you need to fulfill your local database with data execute the following commands from .
aws s3 cp s3://flfinteche-ci-production-eu-central-1-seeds/at/production ./db/seeds/de-at --recursive
aws s3 cp s3://flfinteche-ci-production-eu-central-1-seeds/de/production ./seeds/de-de --recursive
aws s3 cp s3://flfinteche-ci-production-eu-central-1-seeds/shared/production ./seeds/shared --recursive
bundle exec rails db:drop
bundle exec rails db:create db:structure:load
bundle exec rails db:migrate
bundle exec rails db:seed
Username: admin@example.com
Password: Test1234
Rails: http://localhost:3000/
(First load likely to take a few minutes)
Ember: http://localhost:4200/
(Direct access to the Ember)
Ops UI Admin: http://localhost:3000/de/admin
FORCE_COLOR=1 yarn lerna run lint:js
See for further linting Info
ember test --server --filter="test name"
CLARK2=true rails s -b 0.0.0.0
Use a private browser to avoid cookie issues then visit: http://localhost:4200/de/app/contracts?cv=2 to force user to be in Clark 2
The minimal setup is a rails and database server. The rails application has some extra dependencies.
- Insign is a service that is used when people digitally sign documents. A local test server can be used and is provided via a Docker image.,
- The Hermes Docker image is needed for the chat feature
You should have access to Clark's AWS instance to install the docker images (To request access check: https://clarkteam.atlassian.net/wiki/spaces/JCLARK/pages/1631125854/How+to+request+access)
Install docker based on recommendations for you OS (e.g. homebrew for Mac or apt-get for Linux). Grab and run docker images based on instruction
Before starting Rails application you should be sure that hermes and insign dockers are up and running. You can check it by
docker ps
Here is custom script that can be used to control that both hermes and insign are running:
clark_docker() {
export WS_SHARED_SECRET=your_shared_secret
eval $(aws ecr get-login --region eu-central-1 --no-include-email)
docker kill hermes insign ||:
docker rm hermes insign ||:
# Insign Server
docker run -d -p 0.0.0.0:8080:8080 --name insign insign:latest
# Hermes Server
docker run -d -p 0.0.0.0:8801:8801 \
-p 0.0.0.0:9901:9901 \
-e WS_SHARED_SECRET=$WS_SHARED_SECRET \
--name hermes \
hermes:latest
}
To run the app in your local environment with Austria locale for example, use APP_LOCALE=de-at. The APP flag (APP=clark, APP=vkb etc.,) we had earlier that specifies the brand is no longer relevant since WLs have a separate repository now.
Locale switching is managed by the locales addon under client-packages for frontend. The locale for the base clark.de resides under client-packages/addons/locales/src/base/de/base/??.yml And for Austria it resides under client-packages/addons/locales/src/base/de/at/??.yml
Do not add a locale mapping for additional locales if they have the same values as in base (i.e client-packages/addons/locales/src/base/de/base/??.yml)
Command | What is it for? |
---|---|
rake app:branch:integration["new mandate funnel"] |
Will create or checkout the integration-new-mandate-funnel branch to work together on bigger features |
rake app:branch:ticket["4711"] |
Will create or checkout the JCLARK-4711 branch to work on that ticket. This command can only be run from master or an integration branch |
rake app:release |
Will bump the version number, commit the change and tag the commit with the new version number and pushes everything up to GitHub |
The CMS is split into two:
- Comfy CMS: The "old" CMS, part of the Rails application
- Contentful CMS: This "new" CMS. This has it's own repository https://github.com/ClarkSource/cms-frontend It is not needed in order to get the basic rails app up and running locally.
The data folder can by found in db/cms_fixtures/[locale]/
TODO: @Yousry, please add background info and update
If you like you can set cms_fixtures
to true
in your local settings file in config/settings.local.yml
.
Then the CMS data is automatically populated from the cms_fixtures on the filesystem.
Just make sure you have created a corresponding site via the admin interface.
So when you want to use the data in the folder db/cms_fixtures/de/
then you need to have a site with the identifier de
.
Export to data folder
rake cms:export FROM=[locale] TO=[locale]
sudo chmod 777 -R [path_to_the_rails_app]/public/system
Import from existing data folder
rake cms:import FROM=[locale] TO=[locale]
Run following commands or add it (to persist) to ~/.bash_profile
or
~/.zshrc
:
export WS_SHARED_SECRET=some_secret_for_the_websockets
export WS_MESSAGES_API_END_POINT=0.0.0.0:3000
Standard Rails startup...
bundle exec rails server -b 0.0.0.0
If you use something like pow
When you plan to use POW make sure to specify a DOMAIN variable in install script:
DOMAIN=clark.test bin/install
Afterwards just run the server using:
bundle exec rails server -b 0.0.0.0
RAILS_ENV=<ENVIRONMENT> bin/delayed_job start
Full list of users can be found in Users table. You can use PgAdmin or other tool to inspect the database.
Example user's email that can be used for login: mark.megaportfolio@seedsexample.com
All seeded users have following password: Test1234
bin/install
will also set your test environment.
You can then get the command ci uses to run the tests by doing:
#or just display the command with
> bin/ci-specs
Bear in mind that this is the command run for master builds.
Spring is a Rails application preloader. It speeds up development by keeping your application running in the background so you don't need to boot it every time you run a test, rake task or migration.
It makes running test or rails console much faster once you already have something else running. You can prepend spring for the majority of commands (specially rspec and rails).
> bundle exec spring rails s
> bundle exec spring rails c
> bundle exec spring spec
You can also do some more nice things, for instance using the onchange
binary from npm:
> onchange "app/services/robo_advisor.rb" -- bundle exec spring rspec spec/services/robo_advisor/private_liability_insurance_spec.rb
OBS: We do not have spring binstubs
Logging of MiniMagick
commands is disabled in the initializer
config/initializers/mini_magick.rb
. If you need to see what is going
on, just comment out the line.
To quickly develop designs you can put pages into views/prototype
and
access them using http://localhost:3000/prototype/<PAGENAME>
.
Views can be written in any language supported by the installed Gems
(default: filename.html.haml
for HAML and filename.html.erb
for ERB or just filename.html
for plain HTML).
To include partials in your pages, put them into the app/views/prototype
directory, then reference them from another file.
Partials must start with an underscore and may not contain dashes, like
_some_partial.html.haml
.
To include them, write <%= render 'prototype/some_partial' %>
. Note
that the leading underscore and the file extension are omitted.
The common layout for all pages in the prototye is located in
app/views/layouts/prototype.html.erb
. It includes the Stylesheets from
app/assets/stylesheets/prototype/base.scss
. When you develop new
styles, and want to integrate them, @import
them into base.scss
.
All Javascript is loaded from app/assets/javascripts/prototype/index.js
.
Additional Javascript that is only needed for prototyping should go into
that directory. All Javascript that should be loaded in the prototype
layout should be added to index.js
using require
comments.
To reference images from HTML, use the [image_tag
helper][imagetag].
An image in app/assets/images/xxx.jpg
would be referenced by
<%= image_tag 'xxx' %>
.
Note: you can omit the file extension to make Rails chose the right one
automatically. To add classes to an image, use
<%= image_tag 'xxx', class: 'whatever-classfoo' %>
.
To reference images from SCSS/SASS, use the built in helpers:
image-url("rails.png")
becomesurl(/assets/rails.png)
image-path("rails.png")
becomes"/assets/rails.png"
.
The more generic form can also be used:
asset-url("rails.png")
becomesurl(/assets/rails.png)
asset-path("rails.png")
becomes"/assets/rails.png"
For more information [refer to the guide][guide].
To get livereload functionality for developing CSS, run:
bundle exec guard -d -P livereload
in a Terminal inside the root directory of the repo. Livereload can currently be enabled through respective browserextensions.
To show statistic of records persisted in db during test execution, run rspec with:
PERSISTENCE_STATS=true bundle exec rspec spec/
To show exact line of code that triggers database call in logs, make sure SHOW_DB_QUERY_SOURCE=true
is exported.
We have brand config to support different brands/locales. Now each APP_LOCALE will have it's own configuration object at runtime. To access the config object at runtime, use the 'config' service and do this.config.getConfig('config-object-name'). The config file for Austria for example resides under client/brand/clark/js/de-at/index.js and for Germany client/brand/clark/js/de-de/index.js. If you're adding or updating the config object, make sure to update the brandconfig interface under client/app/interfaces/brand-config.ts.
Since Clark Application becomes bigger and bigger and supports multiple labels (with a plan to grow) we need to maintain settings and validate them.
Current settings are listed here: https://clarkteam.atlassian.net/wiki/spaces/JCLARK/pages/1650688468/Whitelabel+Settings
Every developer working on settings, after adding, changing, removing them, please use the following tasks and transfer the changes to the page above.
Tasks:
rake documentation:settings_description
Search for new settings for all labels and add them to existing ones in the settings_descriptions.yml file.
Old descriptions will be preserved. New ones will be added with "?" as a description.
Developers should be responsible for filling those up.
rake documentation:settings
Use existing settings_descriptions.yml file, fetch and parse settings.yml for all brands and prepare a temp markup file.
This file's content should be copied and put into Confluence page.
rake documentation:settings_validation
Assuming your changes in settings are correct - generate yml file with type validations according to current state.
This is Draft/Work In Progress!
To run the application as docker images, we have the following docker files
- Docker-frontend
- Docker-backend
We wish to run all the containers with docker-compose. To achieve that we have the compose.yml file. It consists of hermes, insign, database, frontend and application. The application depends on all the before mentioned images and containers
To be able to run docker-compose you must complete the following steps:
- Have docker and docker-compose installed on the machine
- Sign in to amazon ecr:
aws ecr get-login --region eu-central-1 --no-include-email | bash
- Once signed in, run the following command:
docker-compose -f compose.yml up
NOTE: Once you run the file it will do all the setup for you, it installs everything necessary in the container. It also setups up the database. Once the database has been setup and you re-run the command, it will not do everything all over again and directly start the servers
If you wish to configure for example the environment variables, they can be done from the compose.yml file. i.e APP and RAILS_ENV can be set to your desired value (devk, production etc) through the compose.yml environment vars
NOTE: To avoid any hiccups, please remove the existing config/database.yml file if you have one already. It will bbe copied over from database.yml.docker automatically.
To bootstrap the database, we have script:
- scripts/dev_ci_db_bootstrap.sh and
- ./scripts/bootstrap_db.sh
Both of them take two arguments a BRAND and RAILS_ENV
-
BRAND => i.e clark, devk, groot, weasley, vkb etc
-
RAILS_ENV => i.e development, production, test etc :NOTE - if you wanna run locally please make sure that you have the config/database.yml file.. if not please create one and copy the contents from config/database.yml.example or better config/database.yml.docker
-
USAGE for development (this script creates database and test database)
BRAND=clark RAILS_ENV=development scripts/dev_ci_db_bootstrap.sh
OR -
(this script assumes the database is already created)
BRAND=clark RAILS_ENV=development scripts/bootstrap_db.sh
If you with to use Docker for your local development setup - there are some commands that you may need to get familiar with.
First of all you will need to install docker-sync
gem install docker-sync
After that you need to hit
docker-sync start
And wait few minutes until external volume container is built. Then you may proceed with the rest.
Other useful commands:
docker-sync stop // if you just want to stop the daemon
docker-sync clean // if you want to cleanup the docker-sync container and mount
docker-sync sync // if for some reason you fell out of sync
It is highly recommended to read through the Makefile itself. All commands can be prefixed with APP=brand_name
which will
instruct docker to create app-specific image and container. Containers does not contain application code - everything is
attached via volumes. APP
variable will be exposed and already set once in container.
In order to make it work you need
For most cases you will most likely use:
make backend_build # build backend base and label
make backend_setup # setup backend from scratch (including db setup) - good for initializing new labels locally
make backend_refresh # refresh containers, gems and migrate database
make backend_reset # refresh containers, gems and drop and prepare database
make backend_server # if you need only the backend server
make backend_dev # ssh to the container and work as you want, run rake tests, start server, run specs, etc
make frontend_build # build frontend base (only base is needed, since the build does not depend on label)
make frontend_server # if you need only the frontend server
make frontend_dev # ssh to the container and work as you want, run tests, etc
make watch_emails # start guard to watch tmp directory for emails and open then in the browser
contract_price_calculator
functionality implemented as a separate engine in the folder
gems/contract_price_calculator
Supposed to move this gem into the separate repository and develop/support it there.
We use rswag to create and show api documentation from integration specs.
These specs can be accessed from clark-....de/api/docs
in all instances.
To regenrate documentation when we add or update rspec integration, run bundle exec rake swagger:generate
.