elimintz
elimintz
Haven't had much time in the last months to work on this project. If you would like to fork it and have more people work on it, please feel free...
The project does not have automated testing. Writing tests is something I had on my list of things to do, but because justpy is also a user interface, writing tests...
What you are suggesting is very interesting and would be a major improvement to justpy. It would also require extensive changes in justpy if I understand correctly. I have no...
I have no problem freezing justpy as is and endorsing and contributing to a new project, justpy2 (for example) that will support continuous integration and multiple developers. I would be...
Thank you, will make the change.
I think the following example does what you want: ```python import justpy as jp base_url = '/test_site' @jp.SetRoute(base_url + '/') def page1(request): wp = jp.WebPage() jp.Div(text='First page', classes='m-4 text-xl', a=wp)...
What happens when you change the last line to: ```python jp.justpy(error_page, port=7999) ``` And then got to /dv1/ ?
It is reached when no other route matches. What is the full url you are using and getting the error?
Please try https://glorieta.kingsgroup.org/dvl/ (an extra slash at the end)
If you set the NO_INTERNET configuration variable to False, the libraries will be loaded from the internet. https://justpy.io/tutorial/configuration/#working-locally-without-an-internet-connection Alternatively, you can change the template files, but that is a more...