docs
This commit is contained in:
parent
ab6bca23f9
commit
5962acf86d
4 changed files with 23 additions and 3 deletions
1
appmanage/api/utils/nginx.py
Normal file
1
appmanage/api/utils/nginx.py
Normal file
|
@ -0,0 +1 @@
|
|||
# connect Nginx Proxy Manager and executive API commands
|
1
appmanage/api/utils/sqlite.py
Normal file
1
appmanage/api/utils/sqlite.py
Normal file
|
@ -0,0 +1 @@
|
|||
# connect sqlite and CRUD
|
|
@ -1,3 +1,5 @@
|
|||
# auto convert to cli
|
||||
https://www.convertapi.com/doc/cli-library
|
||||
https://github.com/apicollective/apibuilder-cli
|
||||
# Auto convert to cli
|
||||
|
||||
* [Python Fire](https://github.com/google/python-fire)
|
||||
* https://www.convertapi.com/doc/cli-library
|
||||
* https://github.com/apicollective/apibuilder-cli
|
||||
|
|
|
@ -1,5 +1,21 @@
|
|||
# Dev-Setup
|
||||
|
||||
AppManage is based Python, and you should read the [Architecture docs](./architecture.md) if you want to contributing code for it.
|
||||
|
||||
## Code format
|
||||
|
||||
You can refer to [PEP 8 – Style Guide for Python Code](https://peps.python.org/pep-0008/) and use fomatter tool [Black](https://github.com/psf/black):
|
||||
|
||||
```
|
||||
pip install black
|
||||
black {source_file_or_directory}
|
||||
```
|
||||
|
||||
## Test
|
||||
|
||||
You can test function,class,module and unit by automatic tools []()
|
||||
|
||||
|
||||
## Development runtime
|
||||
|
||||
You can use Windows/Linux/Mac for AppMange development if you have Docker and Python3.8 on you machine.
|
||||
|
|
Loading…
Add table
Reference in a new issue