Add Render as a deployment option (#62)

* Add Render deployment option

Add Render as deployment option

* Remove Render feature descriptions
This commit is contained in:
Jake Malachowski 2020-07-21 08:45:35 -07:00 committed by GitHub
parent 4c53b94588
commit 213c44a45a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@
- [Installation](#installation) - [Installation](#installation)
- [Heroku](#heroku) - [Heroku](#heroku)
- [Render](#render)
- [Updating Your Configuration](#updating-your-configuration) - [Updating Your Configuration](#updating-your-configuration)
- [Advanced Usage](#advanced-usage) - [Advanced Usage](#advanced-usage)
* [Installation with SSL](#installation-with-ssl) * [Installation with SSL](#installation-with-ssl)
@ -61,6 +62,20 @@ Once you deploy, you'll need to setup an admin user, whitelabel, and hostname be
2. `heroku run --app=<your app> ./manage.py hostname <the hostname where you will run Shynet>` 2. `heroku run --app=<your app> ./manage.py hostname <the hostname where you will run Shynet>`
3. `heroku run --app=<your app> ./manage.py whitelabel "<your Shynet instance's name>"` 3. `heroku run --app=<your app> ./manage.py whitelabel "<your Shynet instance's name>"`
## Render
[Render](https://render.com) is a modern cloud platform to build and run all your apps and websites with free SSL, a global CDN, private networks and auto deploys from Git. To deploy Shynet, click the `Deploy to Render` button and follow the steps below.
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/render-examples/shynet)
Once your deploy has completed, use the **Render Shell** to configure your app:
1. Set your email: `./manage.py registeradmin your-email@example.com`
1. Add your onrender.com domain: `./manage.py hostname your-shynet-domain.onrender.com`
1. Set your whitelabel: `./manage.py whitelabel "Your Shynet Instance Name"`
See the [Render docs](https://render.com/docs/deploy-shynet) for more information on deploying your application on Render.
--- ---
## Advanced Usage ## Advanced Usage