Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 901 Bytes

File metadata and controls

61 lines (40 loc) · 901 Bytes

README

Project

Rails Event Store Entities Tracker

Install

Clone the repository

[email protected]:assist-software/rails-eventstore-entities-tracker.git
cd path_to_project

Check your Ruby version

ruby -v

The ouput should start with something like ruby 2.5.1

If not, install the right ruby version using rbenv (it could take a while):

rbenv install 2.5.1

Install dependencies

Using Bundler

bundle

Configure the database

Create a local_env.yml file under config folder and add:

USERNAME: YOUR_USERNAME
PASSWORD: YOUR_PASSWORD
DATABASE: YOUR_DEV_DATABASE

TEST_DATABASE: YOUR_TEST_DATABASE
PROD_DATABASE: YOUR_PROD_DATABASE

Initialize the database

rails db:create db:migrate

Server

rails s