Update README.md
This commit is contained in:
15
README.md
15
README.md
@@ -30,12 +30,25 @@ cd supabase-connector
|
|||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
### Вариант 2: Установка как пакет (в разработке)
|
### Вариант 2: Установка как пакет
|
||||||
|
|
||||||
|
Для разработки (editable mode):
|
||||||
```bash
|
```bash
|
||||||
|
git clone https://github.com/yourusername/supabase-connector.git
|
||||||
|
cd supabase-connector
|
||||||
pip install -e .
|
pip install -e .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Для установки из локальной папки:
|
||||||
|
```bash
|
||||||
|
pip install .
|
||||||
|
```
|
||||||
|
|
||||||
|
После установки как пакет, импорт работает из любой директории:
|
||||||
|
```python
|
||||||
|
from supabase import SupabaseManager
|
||||||
|
```
|
||||||
|
|
||||||
## ⚙️ Настройка
|
## ⚙️ Настройка
|
||||||
|
|
||||||
1. Создайте файл `.env` в корне проекта:
|
1. Создайте файл `.env` в корне проекта:
|
||||||
|
|||||||
Reference in New Issue
Block a user