diff --git a/README.md b/README.md index 4153316..b57bad0 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ [![PostgreSQL](https://img.shields.io/badge/PostgreSQL-15+-blue.svg)](https://postgresql.org) [![Docker](https://img.shields.io/badge/Docker-Ready-blue.svg)](https://docker.com) [![Drone CI](https://img.shields.io/badge/Drone-CI%2FCD-orange.svg)](https://drone.io) -[![Build Status](https://drone.smartsoltech.kr/api/badges/trevor/chat/status.svg)](https://[drone.smartsoltech.kr/trevor/chat](https://drone.smartsoltech.kr/trevor/chat)) +[![Build Status](https://drone.smartsoltech.kr/api/badges/trevor/chat/status.svg)](https://drone.smartsoltech.kr/trevor/chat) ## 🏗️ Архитектура diff --git a/start_services.sh b/start_services.sh index 2a1dba3..8f58d37 100755 --- a/start_services.sh +++ b/start_services.sh @@ -19,12 +19,12 @@ fi # Activate virtual environment echo "🔧 Activating virtual environment..." -if [ -f ".venv/bin/activate" ]; then - source .venv/bin/activate +if [ -f "venv/bin/activate" ]; then + source venv/bin/activate else echo "⚠️ Virtual environment not found. Creating..." - python3 -m venv .venv - source .venv/bin/activate + python3 -m venv venv + source venv/bin/activate fi # Install dependencies