This application is intended to facilitate learning the features of the Aptible Deploy platform, without needing to deploy your application.
There are two ways you can use this application (in sections below): Guided Experience (1) and Quickstart (2)
For new users of the Aptible Deploy platform, you can deploy this application following step-by-step instructions found here.
This will help you deploy the app, and learn to configure additional features of the Aptible Deploy platform in a guided manner. This app even features a checklist that follows the step-by-step guide, to confirm that you have performed each step properly!
For users who are familiar with Deploy, and simply need a web application to experiment with, these are the minimal steps needed to run this application.
- Create an application
- via the Aptible Dashboard, or
- via the Aptible CLI:
aptible apps:create $HANDLE
- Deploy the App - CHOOSE ONE:
- Direct Docker Deploy :
aptible deploy --app $HANDLE --docker-image aptible/deploy-demo-app
- Dockerfile Deploy
- Direct Docker Deploy :
git clone [email protected]:aptible/deploy-demo-app.git
cd deploy-demo-app
git remote add aptible [email protected]:$ENVIRONMENT/$HANDLE.git
git push aptible main
- Set the configuration for your database, force HTTPS only, and increase the scale:
aptible -- apps:scale
aptible config:set \
DATABASE_URL="<<DATABASE_URL>>" \
REDIS_URL="<<REDIS_URL>>" \
FORCE_SSL=true \
IDLE_TIMEOUT=90
- Create an Endpoint for the application from your Dashboard.
Copyright (c) 2024 Aptible. All rights reserved.