File size: 246 Bytes
9dbc3ce
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from __future__ import annotations

from pathlib import Path

from public_space_app import build_app

APP_DIR = Path(__file__).resolve().parent
app = build_app(APP_DIR / "public_copy.json")

if __name__ == "__main__":
    app.launch()