Silent Pro Dashboard
Amazon FBA sales dashboard for Silent Pro basketball products.
Features
- Real-time sales data from Amazon SP-API
- Filter by product and date range
- Argentina timezone support (5am-5am business day)
- Mobile-first responsive design
Local Development
# Install dependencies
pip install -r requirements.txt
# Run locally
uvicorn main:app --reload --port 8000Deploy to Railway
- Push to GitHub
- Go to railway.app
- New Project → Deploy from GitHub repo
- Add environment variables from
.env - Deploy!
Deploy to Render
- Push to GitHub
- Go to render.com
- New Web Service → Connect GitHub repo
- Build command:
pip install -r requirements.txt - Start command:
uvicorn main:app --host 0.0.0.0 --port $PORT - Add environment variables
- Deploy!
Deploy to Vercel
Create vercel.json:
{
"builds": [{"src": "main.py", "use": "@vercel/python"}],
"routes": [{"src": "/(.*)", "dest": "main.py"}]
}Environment Variables
See .env.example for required variables.