Skip to content

Crown-Commercial-Service/crown-marketplace-runner

Repository files navigation

Crown Marketplace Runner

Test Status

This is a simple project to help set up the development environment for the Crown Marketplace projects.

The Crown Marketplace projects consist of the following:

There are more details about these projects in their respective READMEs.

Quick Start

  • Make sure the correct version of Ruby is installed
  • Run bin/setup check you have the required software installed and to download the project repositories. If you are missing any software make sure it is installed before continuing.
  • Run bin/build-applications to build the web applications
  • Add .env.local file to the projects to pass the local environment variables
  • Run bin/run-dev to bring up the web applications and their background services. You can then access them on http://localhost.

Scripts

bin/run-dev

Running bin/run-dev will bring up the two web applications and their Sidekiq instances and start an NGINX server on http://localhost.

The exact process are:

  • web - the NGINX server
  • crown-marketplace_assets - Crown Marketplace Shakapacker dev server for JavaScript assets
  • crown-marketplace_app - Crown Marketplace application dev server running on port 3000
  • crown-marketplace-legacy_assets - Crown Marketplace Legacy Shakapacker dev server for JavaScript assets
  • crown-marketplace-legacy_app - Crown Marketplace Legacy application dev server running on port 3000
  • redis - The Redis server for Sidekiq
  • crown-marketplace_sidekiq - Crown Marketplace Sidekiq server
  • crown-marketplace-legacy_sidekiq: Crown Marketplace Legacy Sidekiq server

You can run the applications without Sidekiq by passing the --no-sidekiq argument to the command.

bin/setup

Running bin/setup checks you have the following software installed:

  • PostgreSQL (database)
  • Redis (cache for Sidekiq)
  • NodeJS (for JavaScript assets)
  • Yarn (for application assets)
  • ClamAV (optional) (Virus check documents)
  • NGINX (local web server)

You can found out more about how to install these in the Software requirements.

It will also download the following repositories into the code directory (if not already downloaded):

bin/build-applications

Running bin/build-applications will do the following to both applications:

  • Run bundle install to download the ruby gems
  • Run bin/rails assets:precompile to compile the CSS and JavaScript assets
  • Run bin/rails db:prepare to create or migrate existing database

bin/update-code

Running bin/update-code will fetch the latest version of the code (on the default branch) for all the projects

Software requirements

This project runs on macOS and the instructions below assume you have homebrew installed.

If you have any problems installing these you should consult the documentation or speak to another developer for help.

Ruby

The web application projects currently run on Ruby v3.3.5.

Ensure that a ruby version manager (e.g. rvm or rbenv) is installed and set up properly before continuing.

PostgreSQL and PostGIS

PostgreSQL and PostGIS are required for the local database setup.

brew install postgresql
brew install postgis

Redis

Redis is required for the Sidekiq (background jobs) server to run.

brew install redis

NodeJS

NodeJS is used to manage external CSS and JavaScript packages that are used in the frontend applications. You should use Node Version Manager (so as not to conflict with your system and other projects).

brew install nvm

You can then install an up to date version of node (these projects use v20).

nvm install 20 

Yarn

Yarn is used to manage the NodeJS modules.

brew install yarn

ClamAV

ClamAV is the antivirus software used to scan uploaded files. It is not a requirement to run the projects which is why it is an optional dependency.

brew install clamav

NGINX

NGINX is only required for the Crown Marketplace Runner as it is used as a reverse proxy to access both applications via the same URL.

brew install nginx

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Crown-Commercial-Service/crown-marketplace-runner.

To contribute to the project, you should checkout a new branch from main and make your changes.

Before pushing to the remote, you should squash your commits into a single commit. This can be done using git rebase -i main and changing pick to s for the commits you want to squash (usually all but the first). This is not required but it helps keep the commit history fairly neat and tidy

Once you have pushed your changes, you should open a Pull Request on the main branch. This will run:

  • Rubocop

Once all these have passed, and the PR has been reviewed and approved by another developer, you can merge the PR.

About

No description, website, or topics provided.

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages