Skip to content

Commit

Permalink
feat: add env and phase
Browse files Browse the repository at this point in the history
  • Loading branch information
scmmishra committed Nov 30, 2023
1 parent d0e066c commit 48f6c85
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,22 @@ health_check:
timeout_seconds: 5
```
### Managing environment variables
You can point to an `.env` file to load environment variables from. This is useful for storing sensitive information like passwords and API keys.

```bash
slick deploy --config path/to/your/config.yaml --env path/to/your/.env
```

However, it is best to use a tool like [Phase](https://phase.dev) to manage your environment variables. Phase allows you to store your environment variables in a secure, encrypted vault, and then inject them into your application at runtime.

```bash
phase run slick deploy
```

Read more about Phase CLI [here](https://docs.phase.dev/cli/commands).

### Development

To run the build with air use the following command
Expand Down

0 comments on commit 48f6c85

Please sign in to comment.