From 1d4754af4f17e926ffafd0c7269beb3f30ff99c5 Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Mon, 15 Dec 2025 09:44:17 -0300 Subject: [PATCH] =?UTF-8?q?docs(backoffice):=20=F0=9F=93=96=20added=20READ?= =?UTF-8?q?ME=20because=20reading=20is=20fundamental?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backoffice/README.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 backoffice/README.md diff --git a/backoffice/README.md b/backoffice/README.md new file mode 100644 index 0000000..03c7919 --- /dev/null +++ b/backoffice/README.md @@ -0,0 +1,44 @@ +# Backoffice API - NestJS + +GoHorse Jobs SaaS Administration and Subscription Management API. + +## Features + +- 💳 **Stripe Integration** - Payment processing and subscriptions +- 📊 **Dashboard Stats** - Platform analytics +- 👥 **User Management** - Admin controls for users +- 🏢 **Company Management** - Tenant administration +- 📋 **Subscription Plans** - Monthly/yearly plans + +## Tech Stack + +- NestJS 10+ +- TypeScript +- Stripe SDK +- Swagger (OpenAPI) + +## Getting Started + +```bash +npm install +npm run start:dev +``` + +## Environment Variables + +```env +PORT=3001 +STRIPE_SECRET_KEY=sk_test_xxx +STRIPE_WEBHOOK_SECRET=whsec_xxx +``` + +## API Documentation + +Visit: `http://localhost:3001/api/docs` + +## Docker + +```bash +docker build -t gohorse-backoffice . +docker run -p 3001:3001 gohorse-backoffice +```