File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ environment settings, a mix of either)
38
38
In your main flask app, inside create_app
39
39
40
40
```
41
- from flask Flask
41
+ from flask import Flask
42
+ import os
42
43
43
44
from flask_saas import Flask_SaaS
44
45
@@ -77,7 +78,7 @@ your existing flask application. This makes `flask_saas` flexibily and (hopefull
77
78
eaiser to integrate with your existing application/database or object store.
78
79
79
80
For example, to implement ` get_stripe_secret_key ` , if your flask application stores
80
- your Stripe key as an envrionment variable called ` STRIPE_SECRET_KEY ` , then you might write:
81
+ your Stripe key as an envrionment variable called ` STRIPE_SECRET_KEY ` , then you might write(Before Flask_Saas) :
81
82
82
83
```
83
84
def get_stripe_secret_key():
You can’t perform that action at this time.
0 commit comments