Update README.md

Fück
This commit is contained in:
Igor Volochay
2025-01-26 20:31:48 +03:00
committed by GitHub
parent 3ef02bba26
commit 44f0c8290c
+2 -2
View File
@@ -9,7 +9,7 @@ Telegram mini-app where you have to choose one of two things.
git install https://github.com/IgorVolochay/thisORthat git install https://github.com/IgorVolochay/thisORthat
``` ```
2. The project is written in Python3.9. Make sure you have it on your system. Go to the project folder, create a virtual environment and download pip requirements. 2. The project is written in Python3.9. Make sure you have it on your system. Go to the project folder, create a virtual environment and download pip requirements:
```bash ```bash
cd ./thisORthat cd ./thisORthat
python3.9 -m venv venv python3.9 -m venv venv
@@ -20,4 +20,4 @@ pip3 install -r requirements.txt
3. Installing MongoDB database. You can use the [official manual](https://www.mongodb.com/docs/manual/installation/) to install MongoDB manually, or use a [Docker image](https://hub.docker.com/r/mongodb/mongodb-community-server) to run the container: 3. Installing MongoDB database. You can use the [official manual](https://www.mongodb.com/docs/manual/installation/) to install MongoDB manually, or use a [Docker image](https://hub.docker.com/r/mongodb/mongodb-community-server) to run the container:
```bash ```bash
docker run --name mongodb -d -p 27017:27017 mongodb/mongodb-community-server docker run --name mongodb -d -p 27017:27017 mongodb/mongodb-community-server
``` ```