mirror of
				https://github.com/TitanEmbeds/Titan.git
				synced 2025-11-03 23:37:09 +01:00 
			
		
		
		
	Set development process to threaded
This commit is contained in:
		
							
								
								
									
										8
									
								
								run.py
									
									
									
									
									
								
							
							
						
						
									
										8
									
								
								run.py
									
									
									
									
									
								
							@@ -4,9 +4,9 @@ from titanembeds.app import app
 | 
			
		||||
def init_debug():
 | 
			
		||||
    import os
 | 
			
		||||
    from flask import jsonify, request
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
    os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1' # Testing oauthlib
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
    # Session viewer https://gist.github.com/babldev/502364a3f7c9bafaa6db
 | 
			
		||||
    def decode_flask_cookie(secret_key, cookie_str):
 | 
			
		||||
        import hashlib
 | 
			
		||||
@@ -20,7 +20,7 @@ def init_debug():
 | 
			
		||||
        }
 | 
			
		||||
        s = URLSafeTimedSerializer(secret_key, salt=salt, serializer=serializer, signer_kwargs=signer_kwargs)
 | 
			
		||||
        return s.loads(cookie_str)
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
    @app.route("/session")
 | 
			
		||||
    def session():
 | 
			
		||||
        cookie = request.cookies.get('session')
 | 
			
		||||
@@ -32,4 +32,4 @@ def init_debug():
 | 
			
		||||
 | 
			
		||||
if __name__ == "__main__":
 | 
			
		||||
    init_debug()
 | 
			
		||||
    app.run(host="0.0.0.0",port=3000,debug=True)
 | 
			
		||||
    app.run(host="0.0.0.0",port=3000,debug=True,processes=3)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user