morphdb 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {morphdb-0.1.0 → morphdb-0.1.1}/PKG-INFO +3 -3
- {morphdb-0.1.0 → morphdb-0.1.1}/README.md +1 -1
- morphdb-0.1.1/morphdb/__init__.py +8 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/__main__.py +1 -1
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/routes.py +1 -1
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb.egg-info/PKG-INFO +3 -3
- {morphdb-0.1.0 → morphdb-0.1.1}/pyproject.toml +2 -2
- morphdb-0.1.0/morphdb/__init__.py +0 -7
- {morphdb-0.1.0 → morphdb-0.1.1}/LICENSE +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/apps.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/associations.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/db.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/errors.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/fieldtypes.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/objects.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/router.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/schema.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/server.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb/util.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb.egg-info/SOURCES.txt +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb.egg-info/dependency_links.txt +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb.egg-info/entry_points.txt +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb.egg-info/requires.txt +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/morphdb.egg-info/top_level.txt +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/setup.cfg +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/tests/test_apps.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/tests/test_core.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/tests/test_hardening.py +0 -0
- {morphdb-0.1.0 → morphdb-0.1.1}/tests/test_relations.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: morphdb
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: A
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A coding-agent-friendly, multi-tenant backend for vibe-coded websites. One process hosts many isolated apps; reshape each app's schema as fast as your agent iterates while the frontend keeps calling the same generic endpoints.
|
|
5
5
|
Author: morphdb contributors
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/Savcab/morphdb
|
|
@@ -27,7 +27,7 @@ Dynamic: license-file
|
|
|
27
27
|
|
|
28
28
|
# MorphDB
|
|
29
29
|
|
|
30
|
-
**A
|
|
30
|
+
**A coding-agent-friendly, multi-tenant backend for vibe-coded websites.**
|
|
31
31
|
|
|
32
32
|
Reshape the data model as fast as your coding agent iterates — the frontend
|
|
33
33
|
keeps calling the same small set of generic, deterministic endpoints.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# MorphDB
|
|
2
2
|
|
|
3
|
-
**A
|
|
3
|
+
**A coding-agent-friendly, multi-tenant backend for vibe-coded websites.**
|
|
4
4
|
|
|
5
5
|
Reshape the data model as fast as your coding agent iterates — the frontend
|
|
6
6
|
keeps calling the same small set of generic, deterministic endpoints.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""MorphDB — a coding-agent-friendly, multi-tenant backend for vibe-coded websites.
|
|
2
|
+
|
|
3
|
+
One process hosts many isolated apps; reshape each app's schema as fast as a
|
|
4
|
+
coding agent iterates, while the frontend keeps calling the same small set of
|
|
5
|
+
generic, deterministic endpoints.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.1.1"
|
|
@@ -10,7 +10,7 @@ from .server import serve
|
|
|
10
10
|
def main(argv=None):
|
|
11
11
|
parser = argparse.ArgumentParser(
|
|
12
12
|
prog="morphdb",
|
|
13
|
-
description="MorphDB — a
|
|
13
|
+
description="MorphDB — a coding-agent-friendly, multi-tenant backend for vibe-coded websites.",
|
|
14
14
|
)
|
|
15
15
|
parser.add_argument("--host", default="127.0.0.1",
|
|
16
16
|
help="Host/interface to bind (default: 127.0.0.1).")
|
|
@@ -49,7 +49,7 @@ def root(req):
|
|
|
49
49
|
return {
|
|
50
50
|
"name": "MorphDB",
|
|
51
51
|
"version": __import__("morphdb").__version__,
|
|
52
|
-
"description": "
|
|
52
|
+
"description": "Coding-agent-friendly, multi-tenant backend for vibe-coded websites.",
|
|
53
53
|
"docs": "GET /help for the full endpoint reference.",
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: morphdb
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: A
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A coding-agent-friendly, multi-tenant backend for vibe-coded websites. One process hosts many isolated apps; reshape each app's schema as fast as your agent iterates while the frontend keeps calling the same generic endpoints.
|
|
5
5
|
Author: morphdb contributors
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/Savcab/morphdb
|
|
@@ -27,7 +27,7 @@ Dynamic: license-file
|
|
|
27
27
|
|
|
28
28
|
# MorphDB
|
|
29
29
|
|
|
30
|
-
**A
|
|
30
|
+
**A coding-agent-friendly, multi-tenant backend for vibe-coded websites.**
|
|
31
31
|
|
|
32
32
|
Reshape the data model as fast as your coding agent iterates — the frontend
|
|
33
33
|
keeps calling the same small set of generic, deterministic endpoints.
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "morphdb"
|
|
7
|
-
version = "0.1.
|
|
8
|
-
description = "A
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
description = "A coding-agent-friendly, multi-tenant backend for vibe-coded websites. One process hosts many isolated apps; reshape each app's schema as fast as your agent iterates while the frontend keeps calling the same generic endpoints."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
11
|
license = { text = "MIT" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|