Rammohan0504 commited on
Commit
78b26a4
·
verified ·
1 Parent(s): 1af2542

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -25,6 +25,9 @@ app.secret_key = os.getenv("SECRET_KEY", "sSSjyhInIsUohKpG8sHzty2q") # Replace
25
  app.register_blueprint(menu_page, url_prefix="/menu_page") # Optional: you can add a URL prefix
26
  print("Menu page is working now")
27
 
 
 
 
28
  # Configure the session type
29
  app.config["SESSION_TYPE"] = "filesystem" # Use filesystem for session storage
30
  #app.config["SESSION_COOKIE_NAME"] = "my_session" # Optional: Change session cookie name
 
25
  app.register_blueprint(menu_page, url_prefix="/menu_page") # Optional: you can add a URL prefix
26
  print("Menu page is working now")
27
 
28
+ app.register_blueprint(cart_page, url_prefix="/cart_page") # Optional: you can add a URL prefix
29
+ print("Menu page is working now")
30
+
31
  # Configure the session type
32
  app.config["SESSION_TYPE"] = "filesystem" # Use filesystem for session storage
33
  #app.config["SESSION_COOKIE_NAME"] = "my_session" # Optional: Change session cookie name