Init Python Library
This commit is contained in:
25
vue-apps-py/README.MD
Normal file
25
vue-apps-py/README.MD
Normal file
@@ -0,0 +1,25 @@
|
||||
# vue-apps-py
|
||||
|
||||
This is a library provided as a building block for your Vue Apps written on Python 3
|
||||
|
||||
You will probably need to install ***uvicorn*** to launch a server built with FastAPI
|
||||
|
||||
```shell
|
||||
python3 -m pip install "uvicorn[standard]"
|
||||
```
|
||||
|
||||
After importing an app such as
|
||||
|
||||
main.py:
|
||||
|
||||
```python
|
||||
from vue_apps_py.vue_app_server import VueApp
|
||||
|
||||
app = VueApp()
|
||||
```
|
||||
|
||||
You can launch web server:
|
||||
|
||||
```shell
|
||||
uvicorn main:app --reload
|
||||
```
|
||||
Reference in New Issue
Block a user