Skip to content

Commit 5ee6d7c

Browse files
committed
Add route to redirect to documentation
1 parent ac0f12a commit 5ee6d7c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/app.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ def credits():
9999
def gamejam():
100100
return flask.render_template('gamejam.html')
101101

102+
@app.route('/docs')
103+
def docs():
104+
return flask.redirect('https://devcade-docs.csh.rit.edu')
105+
102106
@app.errorhandler(Exception)
103107
def page404(e):
104108
eCode = 500

0 commit comments

Comments
 (0)