|
1 | 1 | # heroku-buildpack-static
|
| 2 | + |
2 | 3 | **NOTE**: This buildpack is in an experimental OSS project.
|
3 | 4 |
|
4 | 5 | This is a buildpack for handling static sites and single page web apps.
|
5 | 6 |
|
6 | 7 | For a guide, read the [Getting Started with Single Page Apps on Heroku](https://gist.github.com/hone/24b06869b4c1eca701f9).
|
7 | 8 |
|
| 9 | +## WARNING: `heroku-buildpack-static` is deprecated |
| 10 | + |
| 11 | +This buildpack is deprecated and is no longer being maintained. |
| 12 | +If you are using this project, you can transition over to NGINX via an NGINX buildpack. |
| 13 | +Use your project's existing configuration. |
| 14 | +To find the NGINX configuration generated by the heroku-buildpack-static you can run: |
| 15 | + |
| 16 | +``` |
| 17 | +$ heroku run bash |
| 18 | +~ $ bin/config/make-config |
| 19 | +~ $ cat config/nginx.conf |
| 20 | +``` |
| 21 | + |
| 22 | +These commands will output your current NGINX config generated from your `static.json` contents. |
| 23 | + |
| 24 | +- Write these contents to your local repo at `config/nginx.conf.erb`, commit them to git. |
| 25 | +- Replace path logic that previously used `mruby` with static logic. |
| 26 | +- Configure your app to use the NGINX buildpack via `heroku buildpacks:add heroku-community/nginx`. |
| 27 | +- Remove this buildpack via `heroku buildpacks:remove heroku-community/static` (or `heroku buildpacks:remove https://github.com/heroku/heroku-buildpack-static`). |
| 28 | + |
| 29 | +## Deprecation PRs |
| 30 | + |
| 31 | +If you have tips or tricks for migrating off of this buildpack and want to add them to the instructions above please send a PR. |
| 32 | + |
8 | 33 | ## Features
|
9 | 34 | * serving static assets
|
10 | 35 | * gzip on by default
|
@@ -278,6 +303,7 @@ when accessing `/foo`, `X-Foo` will have the value `"foo"` and `X-Bar` will not
|
278 | 303 | In case you have multiple buildpacks for the application you can ensure static rendering in `Procfile` with `web: bin/boot`.
|
279 | 304 |
|
280 | 305 | ## Testing
|
| 306 | + |
281 | 307 | For testing we use Docker to replicate Heroku locally. You'll need to have [it setup locally](https://docs.docker.com/installation/). We're also using rspec for testing with Ruby. You'll need to have those setup and install those deps:
|
282 | 308 |
|
283 | 309 | ```sh
|
|
0 commit comments