Skip to content

Commit 9408d19

Browse files
committed
my repo
0 parents  commit 9408d19

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2561
-0
lines changed

.editorconfig

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
charset = utf-8
11+
end_of_line = lf
12+
13+
[*.py]
14+
max_line_length = 79
15+
16+
[*.bat]
17+
indent_style = tab
18+
end_of_line = crlf
19+
20+
[LICENSE]
21+
insert_final_newline = false
22+
23+
[Makefile]
24+
indent_style = tab

.gitignore

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# Client
29+
node_modules/
30+
client/public/libs/
31+
client/public/dist/
32+
client/public/themes/
33+
npm-debug.log
34+
package-lock.json
35+
coverage/
36+
logs/
37+
38+
39+
# PyInstaller
40+
# Usually these files are written by a python script from a template
41+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
42+
*.manifest
43+
*.spec
44+
45+
# Installer logs
46+
pip-log.txt
47+
pip-delete-this-directory.txt
48+
49+
# Unit test / coverage reports
50+
htmlcov/
51+
.tox/
52+
.coverage
53+
.coverage.*
54+
.cache
55+
nosetests.xml
56+
coverage.xml
57+
*.cover
58+
.hypothesis/
59+
.pytest_cache/
60+
61+
# Translations
62+
*.mo
63+
*.pot
64+
65+
# Django stuff:
66+
*.log
67+
local_settings.py
68+
69+
# Flask stuff:
70+
instance/
71+
.webassets-cache
72+
73+
# Scrapy stuff:
74+
.scrapy
75+
76+
# Sphinx documentation
77+
docs/_build/
78+
79+
# PyBuilder
80+
target/
81+
82+
# Jupyter Notebook
83+
.ipynb_checkpoints
84+
85+
# pyenv
86+
.python-version
87+
88+
# celery beat schedule file
89+
celerybeat-schedule
90+
91+
# SageMath parsed files
92+
*.sage.py
93+
94+
# dotenv
95+
.env
96+
97+
# virtualenv
98+
.venv
99+
venv/
100+
ENV/
101+
102+
# Spyder project settings
103+
.spyderproject
104+
.spyproject
105+
106+
# Rope project settings
107+
.ropeproject
108+
109+
# mkdocs documentation
110+
/site
111+
112+
# mypy
113+
.mypy_cache/

.travis.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Config file for automatic testing at travis-ci.org
2+
language: python
3+
python:
4+
- 3.6
5+
# - 3.5
6+
# - 3.4
7+
8+
env:
9+
matrix:
10+
- NODE=8.15.0
11+
- NODE=10.15.0
12+
13+
matrix:
14+
fast_finish: true
15+
16+
services:
17+
- mongodb
18+
19+
# Command to install dependencies
20+
install:
21+
- pip install -U tox-travis
22+
- nvm install ${NODE}
23+
- node --version
24+
- npm install -g gulp-cli
25+
26+
# Command before to run tests
27+
before_script:
28+
- npm -C client install
29+
30+
# Command to run tests
31+
script:
32+
- tox # test back-end
33+
- npm -C client run test:karma # test front-end
34+
35+
36+
deploy:
37+
# Automatically build and deploy documentation to GitHub Pages after every
38+
- provider: pages
39+
skip-cleanup: true
40+
github-token: "$GITHUB_TOKEN"
41+
keep-history: true
42+
local-dir: docs/_build/html
43+
target-branch: gh-pages
44+
on:
45+
branch: master
46+
python: 3.6
47+
condition: $NODE = 10.15.0

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"restructuredtext.confPath": ""
3+
}

AUTHORS.rst

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
=======
2+
Credits
3+
=======
4+
5+
Development Lead
6+
----------------
7+
8+
* Dongyu Liu <[email protected]>
9+
10+
Contributors
11+
------------
12+
13+
None yet. Why not be the first?

0 commit comments

Comments
 (0)