Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
128 views
in Technique[技术] by (71.8m points)

python - How to change backend URL in Flask Framework

Tech Stack

Python API Flask Framework

We have developed Python API which then will be consumed by our React UI.

We have URL as follows http://client-be.domain.com/admin

We want to change url to some random string http://client-be.domain.com/fvcd9e72

But i am not able to find out where exactly i need to change this in my code. I can see "admin" folder inside my API code and inside view, code is as follows

admin_views = view1 + view2 + view3 & so on...

So does it means, if i change folder name to random string, my url will be changed?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can set custom url instead of 'admin'. Admin is default url in Flask.

eg:

from flask_admin import Admin
admin = Admin(name='app_name', url='/your_string')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.6k users

...