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- Start the database container:
docker compose up db - Initialize the test database:
RAILS_ENV=test bin/rails db:prepare - Run the linter and the test suite:
bin/rake
Run the asset pipeline and webserver via:
bin/devYou can change your username by setting the REMOTE_USER environment variable.
[email protected] bin/devNOTE: this will automatically install the foreman gem (which should not be in the Gemfile per this wiki article).