Your hosting platform with Stripe payments is ready! Follow these steps to deploy to your VPS at 69.169.102.89
0 of 5 steps completed
Ensure your Stripe account is ready for production
Point awureai.com to your VPS
Add A record: awureai.com → 69.169.102.89
Add A record: www.awureai.com → 69.169.102.89
Update and secure your Ubuntu server
ssh root@69.169.102.89
apt update && apt upgrade -y
apt install -y docker.io docker-compose nginx certbot python3-certbot-nginx postgresql postgresql-contrib
Create PostgreSQL database for AwureAI
sudo -u postgres createdb awureai
sudo -u postgres createuser awureai
sudo -u postgres psql -c "ALTER USER awureai WITH ENCRYPTED PASSWORD 'your_strong_password';"
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE awureai TO awureai;"
Use the complete deployment guide for step-by-step instructions
Full Deployment Guide