| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
. ├── frontend/ # Next.js application (UI, pages, components) ├── backend/ # FastAPI application (API, services, auth) ├── infra/ # Infrastructure-as-Code (AWS CDK / Terraform) ├── scripts/ # Utility and automation scripts ├── docs/ # Internal documentation and legal └── .github/ # CI/CD workflows and issue templates
cd frontend
npm install
npm run devRuns on http://localhost:3001.
cd backend
pip install -r requirements.txt
uvicorn app.main:app --reload --port 8000Runs on http://localhost:8000.
| Command | Description |
|---|---|
| npm run build | Full production build (frontend) |
| npm run lint | ESLint check (frontend) |
| npm run test | Run Jest tests (frontend) |
| pytest | Run Python tests (backend) |
The application is deployed to AWS via GitHub Actions. See .github/workflows/deploy.yml for the pipeline configuration.
The software in this repository is made publicly available under the PolyForm Noncommercial License 1.0.0. Commercial use requires prior written authorization from The DevSec Blueprint LLC.
This license applies only to the software in this repository. It does not grant rights to curriculum, walkthroughs, training materials, premium resources, name, logos, or other branded assets.
See:
Please review the Contributing Guidelines before opening a pull request.
Join the Discord Server to connect with maintainers and contributors.
| Back | FazBrowse Home | New Git URL |