Development¶
Development Environment¶
It is highly recommended to use Visual Studio Code for working on the Open Data Dashboard.
The project contains useful preset VSCode settings that will be applied once you open the project. Additionally, make sure to install the recommended extension.
Application¶
To start developing the Open Data Dashboard Next.js application,
make sure you have Node.js installed on your system.
Now, you can run the development server:
Open http://localhost:3000 with your browser to see the result.
Useful commands:
Resources:
Documentation¶
To start developing the Open Data Dashboard MkDocs documentation,
make sure you have Python3.12 installed on your system.
First, set up your virtual environment and install the required dependencies:
python -m venv docs/.venv
source docs/.venv/bin/activate
pip install -r docs/requirements.txt
python -m venv docs/.venv
./docs/.venv/Scripts/activate.bat
pip install -r docs/requirements.txt
Now, you can run the MkDocs development server:
Open http://localhost:8000 with your browser to see the result.
Useful commands:
Resources: