-
Notifications
You must be signed in to change notification settings - Fork 954
Set up local environment
-
Ensure you are using Python 3.8 (We recommend using pyenv to handle different Python versions.)
-
Ensure you have the dependency management tool Poetry installed by this guide. The easiest is to do
pip install poetry
-
Ensure you have the dependency tool tesseract installed, following the instructions in this guide.
-
From the root folder, install the dependencies in a virtual environment:
poetry install -E parsers
You can now run a few different commands:
poetry run lint # linting
poetry run test # run unit tests
poetry run check # run both linting and tests
You might need to have zlib
and libjpeg
installed on your machine.
To ensure all dependencies required by opencv are installed, you can run apt-get update && apt-get install -y python3-opencv
First up, make sure you're using Python 3.8
. Also, see Troubleshooting for fixes to common issues.
If it's still not working, please create an issue where you include the output from poetry debug
so that we can help debug it.
-
Ensure you have nodejs 14.15 or higher installed.
-
Run:
npm install --global pnpm
-
In the web folder run:
pnpm install
-
Do the same from the mockserver folder:
pnpm install
There are two ways to run the frontend map the quickest and easiest way is to use the vite dev server and the second way is to use build to create a full production build, the later is only recommended when testing the build pipeline.
-
Run the following command in the web folder:
pnpm run dev
-
Go to http://localhost:5173/ and you should see the map!
-
Color the map by opening a new terminal in the web folder and starting the mockserver with the following command:
pnpm run mockserver
-
Run the following command in the web folder:
pnpm run build
-
Start the preview server with:
pnpm run preview
Notes:
- The backend handles the calculation of carbon emissions. The map data from the mock server provides dummy data from the state file.
See Troubleshooting for common issues and fixes when building the map locally.
Your code contributions can't be merged with the codebase unless they respect the electricityMap contrib code formatting.
To check whether you code respects the formatting, you can run the following commands:
poetry run check
If you see that your code fails the formatting check, you can autoformat it by running:
poetry run format
npx prettier --check .
And if the check fails you can run the following command to fix it:
npx prettier --write .
Do you have a question or an idea for improvements? Open a new discussion here