This is an excerpt from my project's README.
The app is deployed to Render.
Cloud resources are provisioned using a feature called Blueprints. Resources are
| /* | |
| Runtime Config | |
| Create React App provides a mechanism for _build-time_ configuration, | |
| via REACT_APP_ env vars. | |
| In order to make a single build of the frontend portable across environments, | |
| it's desirable to also be able to provide _run-time_ configuration. |
| #!/bin/sh | |
| # | |
| # Stopwatch | |
| # | |
| # Simple script to time how long things take. (useful for CI) | |
| # | |
| # Use it like this: | |
| # > ./scripts/stopwatch.sh | |
| # Started stopwatch.. |
This is an excerpt from my project's README.
The app is deployed to Render.
Cloud resources are provisioned using a feature called Blueprints. Resources are
| # based on https://github.com/neondatabase/preview-branches-with-fly | |
| name: Clean up Review App | |
| on: | |
| pull_request: | |
| types: [closed] | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} # You can generate a Fly API token in your account settings |