cli: exclude templates dir from linting

This commit is contained in:
Patrik Oldsberg
2020-03-22 16:08:45 +01:00
committed by Adam Laiacano
parent abe9aab7f9
commit 40c2d53365
4 changed files with 63 additions and 8 deletions
+38
View File
@@ -0,0 +1,38 @@
# Deploying Backstage
## Heroku
Deploying to heroku is relatively easy following these steps.
First, make sure you have the [heroku CLI installed](https://devcenter.heroku.com/articles/heroku-cli) and log into it as well as loging into Heroku's [container registry](https://devcenter.heroku.com/articles/container-registry-and-runtime).
```bash
$ heroku login
$ heroku container:login
```
You _might_ also need to set your Heroku app's stack to `container`
```bash
$ heroku stack:set container -a <your-app>
```
There are two small tweaks made to Backstage's default Dockerfile to run on Heroku:
1. Do not run nginx as the `nginx` user.
2. Replace the standard port (80) in `/etc/nginx/conf.d/default.conf` with the wildcard `$PORT`, which Heroku will set for us.
These changes are in the `deployment/Dockerfile.heroku` file, which you will need to copy into your root directory before deploying:
```bash
$ cp deployment/Dockerfile.heroku Dockerfile
```
With these changes, we can build/push the Docker image to Heroku's container registry and release it to the `web` worker.
```bash
$ heroku container:push web -a <your-app>
$ heroku container:release web -a <your-app>
```
With that, you should have Backstage up and running!