-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/Infisical/infisical
- Loading branch information
Showing
24 changed files
with
552 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "Angular" | ||
--- | ||
|
||
Instructions coming soon. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "Django" | ||
--- | ||
|
||
Instructions coming soon. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: "Express, Fastify, Koa" | ||
--- | ||
|
||
Prerequisite: [Install the CLI](/cli/overview) | ||
|
||
The steps apply to the following non-exhaustive list of frameworks: | ||
|
||
- [Express](https://expressjs.com) | ||
- [Fastify](https://www.fastify.io) | ||
- [Koa](https://koajs.com) | ||
|
||
## Initialize Infisical for your app | ||
|
||
```bash | ||
# move to your app | ||
cd /path/to/project | ||
|
||
# initialize infisical | ||
infisical init | ||
``` | ||
|
||
## Modify the start script in your `package.json` | ||
|
||
```json | ||
... | ||
"scripts": { | ||
"start": "infisical run -- node index.js" | ||
"dev": "infisical run -- nodemon index.js" // if using nodemon for dev | ||
} | ||
... | ||
``` | ||
|
||
## Start your server with environment variables injected | ||
|
||
```bash | ||
npm run start | ||
|
||
# or start development server | ||
|
||
npm run dev | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "Fibre" | ||
--- | ||
|
||
Coming soon. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
title: "Gatsby" | ||
--- | ||
|
||
Prerequisite: [Install the CLI](/cli/overview) | ||
|
||
## Initialize Infisical for your [Gatsby](https://www.gatsbyjs.com) app | ||
|
||
```bash | ||
# move to your app | ||
cd /path/to/project | ||
|
||
# initialize infisical | ||
infisical init | ||
``` | ||
|
||
## Modify the start script in your `package.json` | ||
|
||
```json | ||
... | ||
"scripts": { | ||
"develop": "infisical run -- gatsby develop", | ||
"start": "infisical run -- gatsby develop", | ||
"build": "infisical run -- gatsby build", | ||
"serve": "infisical run -- gatsby serve", | ||
"clean": "infisical run -- gatsby clean" | ||
} | ||
... | ||
``` | ||
|
||
## Start your development server with environment variables injected | ||
|
||
```bash | ||
npm run develop | ||
``` | ||
|
||
<Note> | ||
Note that for environment variables to be exposed to the client, you'll have | ||
to prefix them with `GATSBY_`. Read more about that | ||
[here](https://www.gatsbyjs.com/docs/how-to/local-development/environment-variables/#accessing-environment-variables-in-the-browser). | ||
</Note> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "Laravel" | ||
--- | ||
|
||
Instructions coming soon. |
Oops, something went wrong.