Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Arturo Montejo Ráez
/
WBT2425_0
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
20
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
cec35a4d
authored
Apr 15, 2025
by
Arturo Montejo Ráez
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
added public redirect
parent
0764a323
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
fastapi/main.py
fastapi/main.py
View file @
cec35a4d
...
...
@@ -28,7 +28,11 @@ app.add_middleware(
# Redirect root URL to the public index.html
@app.get
(
"/"
)
async
def
redirect_typer
():
async
def
redirect_root
():
return
RedirectResponse
(
"/public/index.html"
)
@app.get
(
"/public/"
)
async
def
redirect_public
():
return
RedirectResponse
(
"/public/index.html"
)
# User CRUD Operations
...
...
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