Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Krish Moodbidri
self-reg
Commits
39dbcc97
Commit
39dbcc97
authored
Mar 02, 2020
by
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
39dbcc97
...
...
@@ -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.
-
**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
app/__init__.py
View file @
39dbcc97
...
...
@@ -14,19 +14,14 @@ def create_app(config_name):
app
=
Flask
(
__name__
)
# initialization of the flask app
Bootstrap
(
app
)
# allowing app to use bootstrap
global
return_url
return_url
=
''
@
app
.
route
(
'/'
,
methods
=
[
'GET'
,
'POST'
])
# initial route to display the reg page
def
index
():
global
return_url
if
'uid'
not
in
session
:
session
[
'uid'
]
=
str
(
uuid
.
uuid4
())
if
"redir"
in
request
.
args
and
return_url
==
""
:
# check for redir arg in url
return_url
=
request
.
args
.
get
(
"redir"
)
or
"/pun/sys/dashboard"
if
name
!=
""
:
if
"redir"
in
request
.
args
and
'return_url'
not
in
session
:
# check for redir arg in url
session
[
'return_url'
]
=
request
.
args
.
get
(
"redir"
)
or
"/pun/sys/dashboard"
return
render_template
(
'auth/SignUp.html'
,
room_id
=
session
[
'uid'
])
...
...
run.py
View file @
39dbcc97
...
...
@@ -18,9 +18,6 @@ app = create_app(config_name)
app
.
config
[
'SECRET_KEY'
]
=
'vnkdjnfjknfl1232#'
socketio
=
SocketIO
(
app
,
message_queue
=
'amqp://reggie:reggie@ohpc:5672/socketio'
)
@
socketio
.
on
(
'connect'
)
def
socket_connect
():
pass
@
socketio
.
on
(
'join_room'
)
def
on_room
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment