costapy/config/globalvar.py

25 lines
532 B
Python
Raw Normal View History

2024-05-12 02:18:32 +07:00
baseurl = "http://127.0.0.1:15001"
2024-01-13 12:01:14 +07:00
title = "CostaPy"
2023-10-24 20:37:32 +07:00
2024-01-13 12:01:14 +07:00
menu = {
2023-11-04 19:12:11 +07:00
"public": {
"topnav": [
{
"name":"Home",
"href":"/",
"roles":["guest"]
},
{
2024-05-12 02:18:32 +07:00
"name":"Profile",
2023-11-04 19:12:11 +07:00
"href":"#",
"roles":["guest"]
},
{
"name":"CostaPy Website",
2024-05-12 02:18:32 +07:00
"href":"https://costapy.ditaajipratama.net",
2023-11-04 19:12:11 +07:00
"roles":["guest"]
}
]
2023-10-24 20:37:32 +07:00
}
2023-11-04 19:12:11 +07:00
}