Skip to content

geneticsequencing/www.validators.app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Validators.app

This is code repository for Validators.app.
https://www.validators.app/

System dependencies

  • Ruby 2.7.5 (as denoted in the .ruby-version file)
  • Rails 6.1+
  • MySQL 8
  • Redis 6+
  • Node 16.14+
  • Solana CLI (see instruction below)

Configuration Notes

  • Ask someone in charge about the development master.key
  • To edit credentials run EDITOR=vim rails credentials:edit. To open in a different editor, e.g. in atom, use EDITOR="atom --wait" rails credentials:edit
  • Copy config/cluster.yml.example to config/cluster.yml
  • Copy config/database.yml.example to config/database.yml and edit to reflect the proper database name, user name and other settings.
  • Developers using Mac OS will need to brew install shared-mime-info before bundle install
  • Copy config/sidekiq.yml.example to config/sidekiq.yml. This repo is configured for the free version of Sidekiq. Review the Gemfile and config/routes.rb files if you are using Sidekiq Pro.

Database

  • Make sure you have database.yml with correct settings.
  • run rake db:setup to create and migrate the database from schema (db/schema.rb).
  • run rake db:seed for basic data generation.
  • Then follow instructions in database_instructions on Keybase.

Copying data to staging

To enable copying records to staging database set copy_records_to_stage in credentials file to true.

Solana CLI

https://docs.solana.com/cli/install-solana-cli-tools

Installation

sh -c "$(curl -sSfL https://release.solana.com/v<version>/install)"

Upgrade

solana-install init <version>

Check current version

solana -V

Attribute Encryption

Attribute encryption on models is required for any attribute that contains personal information or other sensitive data. The default solution is the attr_encrypted gem. A more secure alternative is Vault.

Vault

Vault is an optional component to this project. We mostly are using its Encryption As A Service feature. This functionality is wrapped by the vault-rails gem.
In the test and development modes you do not need an actual Vault server running. The gem will intercept and perform all encryption that would normally by done by the Vault encryption server.
To use Vault, search the project for 'vault' and read the comments.

Captcha

Visit https://developers.google.com/recaptcha/intro to see how to use reCAPTCHA. You'll need to register your website at https://www.google.com/recaptcha/admin/, choose captcha type, and you'll get site_key and secret_key. Put them in the credentials.
For development, you will find sample keys in config/credentials.yml.enc.

Tests

How to run the test suite:

  • To run all tests: rails test
  • To run all tests from specific directory: rails test test/models
  • To run all tests from specific file: rails test test/models/article_test.rb
  • To run specific test and line: rails test test/models/article_test.rb:6

If you see errors related to yarn while running tests locally, try rake assets:clobber and yarn install.

Continuous Integration

We use Github Actions. See .github directory for more details.
The test credentials are kept in config/credentials/test.yml.enc. We have encrypted test.key to decrypt these credentials.
To decrypt the file: gpg --output config/credentials/test.key --decrypt config/credentials/test_key.gpg.
To encrypt the file: gpg -c --output config/credentials/test_key.gpg config/credentials/test.key.
To decrypt and encrypt the file you need a passphrase, please ask your team leader about it.

Deployment

Deployments are handled by Capistrano. Follow the instructions for Capistrano.

  • To deploy run: cap production deploy.
  • To rollback to the previous version: cap production deploy:rollback ROLLBACK_RELEASE=2022XXXXXXXX
  • To restart application: cap production deploy:restart

Data Centers

  • To append validator to Data Center of your choice use append_to_data_center.rb .
  • To change validator's Data Center with usage of MaxMind service use change_validator_data_center.rb service.

Validators Stack

Gems

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 59.0%
  • HTML 24.7%
  • JavaScript 7.3%
  • Vue 6.6%
  • SCSS 2.4%