File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 26
26
AZURE_WEBAPP_NAME : bangobackend # set this to your application's name
27
27
AZURE_WEBAPP_PACKAGE_PATH : ' .' # set this to the path to your web app project, defaults to the repository root
28
28
NODE_VERSION : ' 20.x' # set this to the node version to use
29
+ PORT : 3000
30
+ SIGNATURE_MESSAGE : ${{ secrets.SIGNATURE_MESSAGE }}
31
+ SMTP_HOST : email-server
32
+ SMTP_PORT : 587
33
+ SMTP_USERNAME : email-server-username
34
+ SMTP_PASSWORD : email-server-password
35
+
36
+ # Sensitive env variables from GitHub secrets
37
+ DATABASE_URL : ${{ secrets.DATABASE_URL }}
38
+ JWT_SECRET : ${{ secrets.JWT_SECRET }}
39
+ JWT_ACCESS_EXPIRATION_MINUTES : 300
40
+ JWT_REFRESH_EXPIRATION_DAYS : 300
41
+ JWT_RESET_PASSWORD_EXPIRATION_MINUTES : 10
42
+ JWT_VERIFY_EMAIL_EXPIRATION_MINUTES : 10
43
+ AZURE_BLOB_CONNECTON_STRING : ${{ secrets.AZURE_BLOB_CONNECTON_STRING }}
29
44
30
45
permissions :
31
46
contents : read
You can’t perform that action at this time.
0 commit comments