fix: removed all occurrences of old domain

This commit is contained in:
ITQ
2025-04-02 20:14:51 +03:00
parent 615a5b8e91
commit f858fa39c9
8 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# Change all vars before going to production and remove all comments (!)
# Below all environment variables and default values
DOCKER_IMAGE=gitlab.prodcontest.ru:5050/team-15/project/custom-python
DOCKER_IMAGE=registry.gitlab.com/megazordpobeda/datarush/custom-python:latest
+2 -2
View File
@@ -15,7 +15,7 @@ Ensure you have the following installed on your system:
#### Clone the project
```bash
git clone git@gitlab.prodcontest.ru:team-15/project.git
git clone git@gitlab.com:megazordpobeda/DataRush.git
```
#### Go to the project directory
@@ -71,7 +71,7 @@ uv run gunicorn config.wsgi
### Clone the project
```bash
git clone git@gitlab.prodcontest.ru:team-15/project.git
git clone git@gitlab.com:megazordpobeda/DataRush.git
```
### Go to the project directory
+1 -1
View File
@@ -8,5 +8,5 @@ BASE_DIR = Path(__file__).resolve().parent
load_dotenv(BASE_DIR / ".env")
DOCKER_IMAGE = os.getenv(
"DOCKER_IMAGE", default="gitlab.prodcontest.ru:5050/team-15/project/custom-python"
"DOCKER_IMAGE", default="registry.gitlab.com/megazordpobeda/datarush/custom-python:latest"
)