-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We include built asset files (in static/dist). We exclude files that are only useful for dev. We also add a CI job to check the Manifest. Co-authored-by: Matthias Dötsch <[email protected]>
- Loading branch information
Showing
3 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
exclude powa/templates/ | ||
# Exclude all dot files and dot directories | ||
exclude .* | ||
recursive-exclude .* * | ||
|
||
exclude vite.config.js | ||
exclude *.json | ||
|
||
recursive-exclude powa/static/js * | ||
recursive-exclude powa/static/styles * | ||
recursive-include powa/templates *.html | ||
recursive-include powa/static/css * | ||
recursive-include powa/static/img * | ||
include powa/static/js/powa.min-all.js | ||
include powa/static/js/config.js | ||
include powa/static/js/require.js | ||
recursive-include powa/static/dist * | ||
include powa/powa.wsgi | ||
include powa-web.conf-dist | ||
include run_powa.py | ||
|
||
include *.md | ||
include *.txt | ||
include CHANGELOG | ||
include readme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
-r requirements.txt | ||
ruff --only-binary=ruff | ||
check-manifest |