Skip to main content

Marketing Site — agentstacktech.com

The public-facing marketing website for AgentStack.

Details

FieldValue
URLhttps://agentstacktech.com
Azure nameagentatacktechmarketing
Resource groupassistant-agent-rg
Environmentcerebro-auth-env (South India)
Imageca45076245feacr.azurecr.io/agentstack-marketing:latest
Port80 (Nginx)
GitHub repoagentstackai/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