Create a new folder.
Create a virtual environment
conda create -n py11 python=3.11
To activate this environment
conda activate py11
To deactivate an active environment
conda deactivate
Install the requirements through the requirements.txt
file.
pip install -r requirements.txt
Build the Docker-compose file to operate the different services (PostgreSQL, Adminer, and Grafana)
docker-compose up --build