The tech carbon estimator is a web component that allow you to estimate, at high level, your carbon emissions
When cloning the project on a Windows machine, it is recommended to add the following option:
git clone REPOSITORY_URL --config core.autocrlf=input
For more information on why this is necessary, see the section on Line Endings
exposed as a web component tech-carbon-estimator
. The component takes the follow optional input:
extra-height
- this is extra height to be taken into account when calculating the height of the chart. E.g. the height of a header/footer that will be visible on the page.
You will need to import the following files to use the tech-carbon-estimator:
- main.js
- polyfill.js
- styles.css
These files can be found under dist/tech-carbon-estimator when developing locally.
To run the following ng
commands, you will need to have the Angular CLI installed globally. This requires that you have Node.js installed and then run the following command from any directory:
npm install -g @angular/cli
You will also need to run npm install
from the root directory of this repository.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The application will automatically reload if you change any of the source files. You can also run ng serve --open
to automatically open the application in a browser tab.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory.
Run ng test
to execute the unit tests via Web Test Runner.
This project follows the the Conventional Commits specification to track the types of changes being made, to determine the version number that should be used in package releases. To ensure that commits lead to a version number increase, then they should contain the following structural elements:
fix: <commit description>
- Results in a patch version increase (ie. 0.0.1 => 0.0.2). This must be the first line of the commit message.
feat: <commit description>
- Results in a minor version increase (ie. 0.0.1 => 0.1.0). This must be the first line of the commit message.
BREAKING CHANGE: <reason for breaking change>
- Results in a major version increase (ie. 0.0.1 => 1.0.0). This must be the footer/final line of the commit message.
Other prefixes are acceptable (docs:
, build:
etc.) but these are the only ones guaranteed to affect the version number. For more information on the Package release process see Publishing Tech Carbon Estimator Package.
The project uses GitHub Actions to automate certain workflows. One such workflow runs when opening a pull request and pushing changes to the related branch. The develop
branch also has a ruleset that ensures that the status checks from this workflow have passed successfully before PRs can be merged into it. Ruleset details can be viewed here.
If you would like to skip running the workflow for a given push to a PR branch there are various ways this can be achieved. For example, adding [skip ci]
to the end of the commit message in the push (e.g. git commit -m "My message [skip ci]"
) will skip running the workflow for that push. However, you should be aware that this will also mark the status checks in the PR as pending, which will still block it from being merged.
Unfortunately Github does not recognise manually triggered runs of this workflow, so if you end up in this state you will either need to push additional changes without [skip ci]
or amend the original commit to remove it from the description (e.g. git commit --amend -m "My message"
), and then force push the branch (git push --force-with-lease
- not recommended if anyone else has pulled down the branch), if there are no more legitimate changes to make.
When it comes to merging PRs into develop
, we have restricted the options to show 'Squash and merge' only. We request that you use the standard merge message that GitHub generates when using this option, as this preserves the conventional commit messages that allow us to determine the next version number.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.
This project is configured to use Linux/macOS line endings (Line Feed or LF), which will be enforced by Prettier. If working on Windows, your editor should be configured to insert these kind of line endings (the default for VSCode using the repo settings). To prevent git from attempting to change line endings when pulling down changes you should set the following config option:
git config core.autocrlf input
This option can also be set when cloning the repository by running:
git clone REPOSITORY_URL --config core.autocrlf=input
Applying the setting when cloning rather than after cloning may help resolve issues related to line endings when setting up the project in VSCode. Otherwise the default behaviour of git is to convert the line endings to the Windows standard of CRLF as you pull down the code and convert them back again on push. As Prettier can only use one standard, this then results in every line ending in the project being marked as an error within VSCode.
For further documentation please see the docs folder.
© Copyright Scott Logic