File tree 4 files changed +10
-5
lines changed
Firebase_Authentication_Using_Flask
4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
.env
2
2
* .pyc
3
- /__pycache__
3
+ /__pycache__
4
+ /.venv
Original file line number Diff line number Diff line change 10
10
"projectId" : os .environ .get ("FIREBASE_PROJECT_ID" ),
11
11
"storageBucket" : os .environ .get ("FIREBASE_STORAGE_BUCKET" ),
12
12
"messagingSenderId" : os .environ .get ("FIREBASE_MESSAGING_SENDER_ID" ),
13
- "appId" : os .environ .get ("FIREBASE_APP_ID" ),
14
- "measurementId" : os .environ .get ("FIREBASE_MEASUREMENT_ID" )
13
+ "appId" : os .environ .get ("FIREBASE_APP_ID" )
15
14
}
16
15
16
+ # "measurementId": os.environ.get("FIREBASE_MEASUREMENT_ID")
17
+
18
+
17
19
#Intializing Firebase Object
18
20
firebase = Firebase (config )
19
21
Original file line number Diff line number Diff line change 4
4
from db import auth
5
5
6
6
app = Flask (__name__ )
7
- app .secret_key = "MBSAIADITYA "
7
+ app .secret_key = "somesecretkey "
8
8
9
9
exempted_endpoints = ['signup' ,'login' ,'static' ]
10
10
Original file line number Diff line number Diff line change @@ -5,4 +5,6 @@ gcloud==0.18.3
5
5
sseclient == 0.0.27
6
6
pycryptodome == 3.18.0
7
7
requests-toolbelt == 0.10.1
8
- urllib3 == 1.26.15
8
+ urllib3 == 1.26.15
9
+ Werkzeug == 2.2.2
10
+ setuptools
You can’t perform that action at this time.
0 commit comments