| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
A modern web interface for managing Attack Range deployments, built with Astro.
npm installStart the development server:
npm run devThe frontend will be available at http://localhost:4321 (default Astro port).
Create a .env file in the app directory to configure the API URL:
PUBLIC_API_URL=http://localhost:4000Build for production:
npm run buildPreview the production build:
npm run previewThe interface uses a dark theme with:
app/ ├── src/ │ ├── layouts/ │ │ └── BaseLayout.astro # Base layout with navigation │ ├── pages/ │ │ ├── index.astro # Templates page │ │ └── attack-ranges.astro # Running attack ranges page │ └── utils/ │ └── api.ts # API client utilities ├── public/ # Static assets └── package.json
The frontend communicates with the Flask API backend. Ensure the API is running and accessible at the configured URL.
| Back | FazBrowse Home | New Git URL |