Add Django, Rails integration instructions to docs and move cli login to overview page

This commit is contained in:
Tuan Dang
2022-11-29 19:38:41 -05:00
parent c6777e43ed
commit 6468b356a6
8 changed files with 51 additions and 19 deletions

View File

@@ -2,4 +2,20 @@
title: "Django"
---
Instructions coming soon.
Prerequisite: [Install the CLI](/cli/overview)
## Initialize Infisical for your [Django](https://www.djangoproject.com) project
```bash
# move to your Django project
cd /path/to/project
# initialize infisical
infisical init
```
## Start your server with environment variables injected
```bash
infisical run -- python manage.py runserver
```

View File

@@ -1,5 +1,5 @@
---
title: "Fibre"
title: "Fiber"
---
Coming soon.

View File

@@ -4,7 +4,7 @@ title: "Next.js"
Prerequisite: [Install the CLI](/cli/overview)
## Initialize Infisical for your [Next.js](https://nextjs.org)
## Initialize Infisical for your [Next.js](https://nextjs.org) app
```bash
# move to your Next.js app

View File

@@ -2,4 +2,20 @@
title: "Ruby on Rails"
---
Instructions coming soon.
Prerequisite: [Install the CLI](/cli/overview)
## Initialize Infisical for your [Rails](https://rubyonrails.org) app
```bash
# move to your Rails app
cd /path/to/project
# initialize infisical
infisical init
```
## Start your server with environment variables injected
```bash
infisical run -- bin/rails server
```