| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Cross-platform Flutter app template with a Python FastAPI backend.
Create a repository from this template and open it in VS Code.
For the recommended environment, run Dev Containers: Reopen in Container. The dev container installs the Flutter SDK image, Java 21, Python 3.13, the latest uv, and then runs:
uv sync --frozen
flutter pub getThe dev container targets GitHub Codespaces and x64 Linux containers. It does not force Docker to emulate another platform. On Apple Silicon or other arm64 hosts, use the local setup commands below instead of reopening in a container.
For local development without the dev container:
uv sync
flutter pub getRun both the backend and app from the VS Code Run All compound launch configuration, or run them manually:
PYTHON_ENV=development uv run uvicorn server:app --port 9999 --reload
flutter run -d web-server --web-hostname 0.0.0.0 --web-port 9090| Back | FazBrowse Home | New Git URL |