FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
fastapi-admin/Makefile at dev · fastapi-admin/fastapi-admin · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
fastapi-admin
/
fastapi-admin
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
466
Star
3.8k
Code
Issues
63
Pull requests
15
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
fastapi-admin
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (29 loc) · 748 Bytes
Breadcrumbs
fastapi-admin
/
Makefile
Copy path
File metadata and controls
40 lines (29 loc) · 748 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
checkfiles
= fastapi_admin/ tests/ examples/ conftest.py
black_opts
= -l 100 -t py38
py_warn
= PYTHONDEVMODE=1
locales
= fastapi_admin/locales
up
:
@poetry update
deps
:
@poetry install --no-root
style
: deps
isort -src
$(
checkfiles
)
black
$(
black_opts
)
$(
checkfiles
)
check
: deps
black --check
$(
black_opts
)
$(
checkfiles
)
||
(echo
"
Please run 'make style' to auto-fix style issues
"
&&
false)
flake8
$(
checkfiles
)
mypy
$(
checkfiles
)
pylint
$(
checkfiles
)
test
: deps
$(
py_warn
)
py.test
build
: deps
@poetry build
ci
: check test
#
i18n
extract
:
@pybabel extract -F babel.cfg -o
$(
locales
)
/messages.pot ./
update
:
@pybabel update -d
$(
locales
)
-i
$(
locales
)
/messages.pot
compile
:
@pybabel compile -d
$(
locales
)
babel
: extract update
Back
|
FazBrowse Home
|
New Git URL