The 'Register as a waste carrier' service allows businesses, who deal with waste and have to register according to the regulations, to register online. Once registered, businesses can sign in again to edit their registrations if needed.
The service also allows authorised agency users and NCCC staff to create and manage registrations on other users' behalf, e.g. to support 'Assisted Digital' registrations. The service provides an internal user account management facility which allows authorised administrators to create and manage other agency user accounts.
The waste-carriers-engine allows users who registered using the 'Register as a waste carrier' service to renew their registrations.
The engine is mounted in waste-carriers-front-office and waste-carriers-back-office.
Make sure you already have:
- Git
- Ruby 3.1.2
- Bundler – for installing Ruby gems
- MongoDb 3.6
## Mounting the engine
Add the engine to your Gemfile:
gem "waste_carriers_engine",
git: "https://github.com/DEFRA/waste-carriers-engine"
Install it with bundle install
.
Set up all the required environment variables and load them into the application. See .env.example and config/application.rb for an indication of what values you need.
Create a new file at config/initializers/waste_carriers_engine.rb and add:
WasteCarriersEngine::VERSION = Gem.loaded_specs["waste_carriers_engine"].version
Then mount the engine in your routes.rb file:
Rails.application.routes.draw do
mount WasteCarriersEngine::Engine => "/"
end
The engine should now be mounted at the root of your project. You can change "/"
to a different route if you'd prefer it to be in a subdirectory.
For more info, see how the engine was mounted in waste-carriers-front-office.
You don't need to do this if you're just mounting the engine without making any changes.
However, if you want to edit the engine, you'll have to install it locally.
Clone the repo and drop into the project:
git clone https://github.com/DEFRA/waste-carriers-engine.git && cd waste-carriers-engine`
Then install the dependencies with bundle install
.
The engine is mounted in a dummy Rails 4 app (in /spec/dummy) so we can properly test its behaviour.
The test suite is written in RSpec.
To run all the tests, use:
bundle exec rspec
While many of the tests stub environment variables, you may still need to set them for accurate testing.
The dummy project uses the Dotenv gem to load environment variables when the app starts. Dotenv expects to find a .env file in the project root. For the dummy, the root is /spec/dummy/
Duplicate .env.example and rename the copy as .env
Open it and update the settings as required.
If you have an idea you'd like to contribute please log an issue.
All contributions should be submitted via a pull request.
THIS INFORMATION IS LICENSED UNDER THE CONDITIONS OF THE OPEN GOVERNMENT LICENCE found at:
http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3
The following attribution statement MUST be cited in your products and applications when using this information.
Contains public sector information licensed under the Open Government license v3
The Open Government Licence (OGL) was developed by the Controller of Her Majesty's Stationery Office (HMSO) to enable information providers in the public sector to license the use and re-use of their information under a common open licence.
It is designed to encourage use and re-use of information freely and flexibly, with only a few conditions.