A repo to play with different concepts and ideas in various languages.
Change into the python directory from the root of this project:
cd pythonActivate a virtual environment:
python3 -m venv .venv
source .venv/bin/activateInstall requirements:
pip install -r requirements.txtSave requirements (if needed):
pip freeze > requirements.txtRun a script:
python3 src/compose.pyDeactivate a virtual environment:
deactivateChange into the typescript directory from the root of this project:
cd typescriptInstall dependencies:
npm iRun a script from the package.json scripts list:
npm run fetch