mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-10 07:58:15 -05:00
22 lines
356 B
Plaintext
22 lines
356 B
Plaintext
---
|
|
title: "Flask"
|
|
---
|
|
|
|
Prerequisite: [Install the CLI](/cli/overview)
|
|
|
|
## Initialize Infisical for your [Flask](https://flask.palletsprojects.com/en/2.2.x) app
|
|
|
|
```bash
|
|
# move to your Flask app
|
|
cd /path/to/project
|
|
|
|
# initialize infisical
|
|
infisical init
|
|
```
|
|
|
|
## Start your server with environment variables injected
|
|
|
|
```bash
|
|
infisical run -- flask run
|
|
```
|