Simple Telegram Web App. TypeScript is used in Vue components, JavaScript is used in configuration.
- black - backend code and configuration formatting
- prettier - frontend code and configuration formatting
Install venv tool for Python3:
sudo apt install python3-venv
Create and activate virtual environment:
python3 -m venv venv
source venv/bin/activate
Install all dependencies to run backend:
pip install -r requirements.txt
Install node.js
and npm
to run frontend:
sudo apt install npm
Then
cd frontend
# To install node modules
npm install