Verdandi is a Node Schema and Component Definition JSON Editor for Yggdrail. It provides powerful tools for managing and editing node schemas and component definitions.
https://github.com/world-in-progress/yggdrasil
In Norse mythology, Verdandi is one of the three Norns who weaves the web of fate at the roots of Yggdrasil, determining the destinies of both gods and humans. As the Norn who presides over the "present," Verdandi's duty is to ensure that the fate of the current moment unfolds correctly.
Configure your MongoDB database in main.py
:
client = MongoClient("mongodb://localhost:27017/") # Your MongoDB URL
db = client["test"] # Your MongoDB database name
nodeSchemaCollection = db["nodeSchema"] # Your Node Schema collection name
requestParamsCollection = db["requestParams"] # Your Request Params collection name
responseStatusCollection = db["responseStatus"] # Your Response Status collection name
cd ./backend/
uvicorn main:app --reload
npm run dev