Cleanup (#194)
* Add basic README description for dashboard * Use spaces for all except makefile * enable tests for py 3.5 * Python 3.5 support label * Avoid clash of names
This commit is contained in:
parent
093e852df5
commit
35a88c0235
|
@ -2,17 +2,17 @@ root = true
|
|||
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
indent_size = 8
|
||||
|
||||
[*.py]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[*.ts]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
|
|
@ -5,7 +5,7 @@ on: [push]
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
name: Node ${{ matrix.node }} on ${{ matrix.os }}
|
||||
name: Dashboard - Node ${{ matrix.node }} on ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [macOS, ubuntu, windows]
|
||||
|
|
|
@ -5,7 +5,7 @@ on: [push]
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
name: Python ${{ matrix.python }} on ${{ matrix.os }}
|
||||
name: Docker - Python ${{ matrix.python }} on ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu]
|
||||
|
|
|
@ -5,11 +5,11 @@ on: [push]
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
name: Python ${{ matrix.python }} on ${{ matrix.os }}
|
||||
name: Library - Python ${{ matrix.python }} on ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [macOS, ubuntu, windows]
|
||||
python: [3.6, 3.7]
|
||||
python: [3.5, 3.6, 3.7]
|
||||
max-parallel: 4
|
||||
fail-fast: false
|
||||
steps:
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
[![Contributions Welcome](https://img.shields.io/static/v1?label=contributions&message=welcome%20%F0%9F%91%8D&color=green)](https://github.com/abhinavsingh/proxy.py/issues)
|
||||
[![Gitter](https://badges.gitter.im/proxy-py/community.svg)](https://gitter.im/proxy-py/community)
|
||||
|
||||
[![Python 3.5](https://img.shields.io/badge/python-3.5-blue.svg)](https://www.python.org/downloads/release/python-350/)
|
||||
[![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)
|
||||
[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/)
|
||||
[![Checked with mypy](https://img.shields.io/static/v1?label=mypy&message=checked&color=blue)](http://mypy-lang.org/)
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
include src/proxy.html
|
||||
include src/proxy.css
|
||||
include tsbuild/src/proxy.js
|
|
@ -1 +1,11 @@
|
|||
# Proxy.py Dashboard
|
||||
|
||||
`Proxy.py dashboard` is a standalone frontend application written in Typescript.
|
||||
|
||||
## Features
|
||||
|
||||
- Standalone frontend framework
|
||||
- Single page application
|
||||
- Websocket based API
|
||||
- Extendable using frontend plugins
|
||||
- Realtime
|
||||
|
|
Loading…
Reference in New Issue