README fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-09-25 12:29:41 +09:00
parent da52fbc783
commit bd7a481803
2 changed files with 5 additions and 5 deletions

View File

@@ -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)
## 🏗️ Архитектура

View File

@@ -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