Skip to content
Snippets Groups Projects
Commit 39dbcc97 authored by Mitchell Moore's avatar Mitchell Moore
Browse files

Fixed variable in run.py. Updated Readme

- Fix var in run.py
- add image resource
- Update readme
- Remove old diagram
parent 3d89ed5e
No related branches found
No related tags found
No related merge requests found
...@@ -68,4 +68,4 @@ $ python test_producer.py ohpc ...@@ -68,4 +68,4 @@ $ python test_producer.py ohpc
You should now see that the message has been sent and displayed on the ohpc node. You should now see that the message has been sent and displayed on the ohpc node.
- **Note,** that the `test_producer.py` script is identical to the code within the `ingest_data()` function in `run.py`. - **Note,** that the `test_producer.py` script is identical to the code within the `ingest_data()` function in `run.py`.
\ No newline at end of file
...@@ -14,19 +14,14 @@ def create_app(config_name): ...@@ -14,19 +14,14 @@ def create_app(config_name):
app = Flask(__name__) # initialization of the flask app app = Flask(__name__) # initialization of the flask app
Bootstrap(app) # allowing app to use bootstrap Bootstrap(app) # allowing app to use bootstrap
global return_url
return_url = ''
@app.route('/', methods=['GET', 'POST']) # initial route to display the reg page @app.route('/', methods=['GET', 'POST']) # initial route to display the reg page
def index(): def index():
global return_url
if 'uid' not in session: if 'uid' not in session:
session['uid']=str(uuid.uuid4()) session['uid']=str(uuid.uuid4())
if "redir" in request.args and return_url == "": # check for redir arg in url if "redir" in request.args and 'return_url' not in session: # check for redir arg in url
return_url = request.args.get("redir") or "/pun/sys/dashboard" session['return_url'] = request.args.get("redir") or "/pun/sys/dashboard"
if name != "":
return render_template('auth/SignUp.html', room_id=session['uid']) return render_template('auth/SignUp.html', room_id=session['uid'])
......
...@@ -18,9 +18,6 @@ app = create_app(config_name) ...@@ -18,9 +18,6 @@ app = create_app(config_name)
app.config['SECRET_KEY'] = 'vnkdjnfjknfl1232#' app.config['SECRET_KEY'] = 'vnkdjnfjknfl1232#'
socketio = SocketIO(app, message_queue='amqp://reggie:reggie@ohpc:5672/socketio') socketio = SocketIO(app, message_queue='amqp://reggie:reggie@ohpc:5672/socketio')
@socketio.on('connect')
def socket_connect():
pass
@socketio.on('join_room') @socketio.on('join_room')
def on_room(): def on_room():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment