The data loading management application will provide an interface for users to upload vendor data for processing, schedule automated vendor data loading jobs, and review status and results of data loading jobs.
The application will also provide an API interface to be consumed by the data loading pipeline to run the data loading jobs and execute any specified data processing tasks.
Ruby dependencies can be installed with bundle install
, JavaScript dependencies are installed via yarn install
.
NOTE: Data loading management uses Ruby 3.1.2.
Start up dependencies with docker compose up db
(with -d
to run in background).
NOTE: If you get failures that references missing assets, you may need to manually compile them via:
bin/rake css:build
docker compose up db
RAILS_ENV=test bin/rails db:prepare
bin/rake
Run the asset pipeline and webserver via:
bin/dev
You can change your username by setting the REMOTE_USER
environment variable.
REMOTE_USER=auser@stanford.edu bin/dev
NOTE: this will automatically install the foreman
gem (which should not be in the Gemfile per this wiki article).