Skip to content

Latest commit

 

History

88 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SDG System

Synthetic Data Generator System

Get Started

  1. Install the required packages uv sync

Using uv as package management tool

  1. Run the server uvicorn sdg.main:app --reload

Follow the tutorial to run the server with vscode debugger, the .vscode/launch.json file looks like

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        
        {
            "name": "Python Debugger: FastAPI",
            "type": "debugpy",
            "request": "launch",
            "module": "uvicorn",
            "args": [
                "sdg.main:app",
                "--reload"
            ],
            "jinja": true
        }
    ]
}
  1. Server hosted at http://127.0.0.1:8000 by default

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages

Generated from zjuDBxAI/template