We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca7797d commit fff1d1fCopy full SHA for fff1d1f
READM.md
@@ -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
15
+pip install -r requirements.txt
16
+cp .env.example .env
17
main.py
@@ -0,0 +1,3 @@
+from cloudsql_to_supabase.cli import cli
+if __name__ == "__main__":
+ cli()
0 commit comments