Skip to content

Commit fff1d1f

Browse files
committed
Add main script and README for CloudSQL to Supabase migration tool
1 parent ca7797d commit fff1d1f

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

READM.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# ================================
2+
# README.md
3+
# CloudSQL to Supabase Migration Tool
4+
5+
A CLI tool to migrate PostgreSQL databases from Google Cloud SQL to Supabase.
6+
7+
## Usage
8+
```bash
9+
python main.py migrate
10+
python main.py backup
11+
```
12+
13+
## Setup
14+
```bash
15+
pip install -r requirements.txt
16+
cp .env.example .env
17+
```

main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from cloudsql_to_supabase.cli import cli
2+
if __name__ == "__main__":
3+
cli()

0 commit comments

Comments
 (0)