Skip to content

Commit 18409ad

Browse files
committed
add front and admin project
1 parent fbcdcbe commit 18409ad

File tree

3 files changed

+240
-0
lines changed

3 files changed

+240
-0
lines changed

.gitignore

+238
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,238 @@
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+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# IPython
81+
profile_default/
82+
ipython_config.py
83+
84+
# pyenv
85+
.python-version
86+
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95+
__pypackages__/
96+
97+
# Celery stuff
98+
celerybeat-schedule
99+
celerybeat.pid
100+
101+
# SageMath parsed files
102+
*.sage.py
103+
104+
# Environments
105+
.env
106+
.venv
107+
env/
108+
venv/
109+
ENV/
110+
env.bak/
111+
venv.bak/
112+
113+
# Spyder project settings
114+
.spyderproject
115+
.spyproject
116+
117+
# Rope project settings
118+
.ropeproject
119+
120+
# mkdocs documentation
121+
/site
122+
123+
# mypy
124+
.mypy_cache/
125+
.dmypy.json
126+
dmypy.json
127+
128+
# Pyre type checker
129+
.pyre/
130+
131+
132+
133+
134+
135+
# Logs
136+
logs
137+
*.log
138+
npm-debug.log*
139+
yarn-debug.log*
140+
yarn-error.log*
141+
lerna-debug.log*
142+
143+
# Diagnostic reports (https://nodejs.org/api/report.html)
144+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
145+
146+
# Runtime data
147+
pids
148+
*.pid
149+
*.seed
150+
*.pid.lock
151+
152+
# Directory for instrumented libs generated by jscoverage/JSCover
153+
lib-cov
154+
155+
# Coverage directory used by tools like istanbul
156+
coverage
157+
*.lcov
158+
159+
# nyc test coverage
160+
.nyc_output
161+
162+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
163+
.grunt
164+
165+
# Bower dependency directory (https://bower.io/)
166+
bower_components
167+
168+
# node-waf configuration
169+
.lock-wscript
170+
171+
# Compiled binary addons (https://nodejs.org/api/addons.html)
172+
build/Release
173+
174+
# Dependency directories
175+
node_modules/
176+
jspm_packages/
177+
178+
# TypeScript v1 declaration files
179+
typings/
180+
181+
# TypeScript cache
182+
*.tsbuildinfo
183+
184+
# Optional npm cache directory
185+
.npm
186+
187+
# Optional eslint cache
188+
.eslintcache
189+
190+
# Microbundle cache
191+
.rpt2_cache/
192+
.rts2_cache_cjs/
193+
.rts2_cache_es/
194+
.rts2_cache_umd/
195+
196+
# Optional REPL history
197+
.node_repl_history
198+
199+
# Output of 'npm pack'
200+
*.tgz
201+
202+
# Yarn Integrity file
203+
.yarn-integrity
204+
205+
# dotenv environment variables file
206+
.env
207+
.env.test
208+
209+
# parcel-bundler cache (https://parceljs.org/)
210+
.cache
211+
212+
# Next.js build output
213+
.next
214+
215+
# Nuxt.js build / generate output
216+
.nuxt
217+
dist
218+
219+
# Gatsby files
220+
.cache/
221+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
222+
# https://nextjs.org/blog/next-9-1#public-directory-support
223+
# public
224+
225+
# vuepress build output
226+
.vuepress/dist
227+
228+
# Serverless directories
229+
.serverless/
230+
231+
# FuseBox cache
232+
.fusebox/
233+
234+
# DynamoDB Local files
235+
.dynamodb/
236+
237+
# TernJS port file
238+
.tern-port

vue2-elm

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 0a83a888883988711c1e6b49c2f4ba34faa4523e

vue2-manage

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 4e7b56d6e17562db770e6c6b7151142148ab7cbb

0 commit comments

Comments
 (0)