Marketing Site — agentstacktech.com
The public-facing marketing website for AgentStack.
Details
| Field | Value |
|---|---|
| URL | https://agentstacktech.com |
| Azure name | agentatacktechmarketing |
| Resource group | assistant-agent-rg |
| Environment | cerebro-auth-env (South India) |
| Image | ca45076245feacr.azurecr.io/agentstack-marketing:latest |
| Port | 80 (Nginx) |
| GitHub repo | agentstackai/agentstack-marketing |
Tech Stack
- React 18 + TypeScript + Vite
- Tailwind CSS
- Nginx (serves the built static files)
- Multi-stage Docker build (Node → Nginx)
How to Update
# 1. Make changes in the repo
cd /path/to/agentstack-marketing
git add . && git commit -m "your change"
# 2. Build and push image to ACR
az acr build \
--registry ca45076245feacr \
--resource-group testing \
--image agentstack-marketing:latest \
.
# 3. Deploy to Azure Container App
az containerapp update \
--name agentatacktechmarketing \
--resource-group assistant-agent-rg \
--image ca45076245feacr.azurecr.io/agentstack-marketing:latest
How to Run Locally
cd agentstack-marketing
npm install
npm run dev # runs on http://localhost:5173
Domain & SSL
- Domain:
agentstacktech.com(managed in Cloudflare) - SSL: Azure managed certificate (auto-renews)
- Cloudflare proxy: OFF (required for cert auto-renewal)
View Logs
az containerapp logs show \
--name agentatacktechmarketing \
--resource-group assistant-agent-rg \
--tail 50