Skip to content

Commit 4c395ea

Browse files
committed
replaced requirements*.txt and pip to pyproject and uv; added prebuilt docs, updated dockerfile and compose
1 parent 02e1c69 commit 4c395ea

File tree

214 files changed

+51882
-3480
lines changed

Some content is hidden

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

214 files changed

+51882
-3480
lines changed

.dockerignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
**/__pycache__
2+
.git
3+
.idea
4+
.mypy_cache
5+
.pytest_cache
6+
.ruff_cache
7+
.venv
8+
lemur/static/dist
9+
node_modules
10+
bower_components
11+
.tmp

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 0 additions & 97 deletions
This file was deleted.

.github/workflows/codeql.yml

Lines changed: 0 additions & 81 deletions
This file was deleted.

.github/workflows/dependabot-auto-merge.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/lemur-publish-release-pypi.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ package-lock.json
2121
/dist
2222
/node_modules/
2323
/bower_components/
24-
/docs/html
25-
/docs/doctrees
2624
/lemur/static/dist/
2725
/lemur/static/app/vendor/
2826
/wheelhouse
@@ -31,7 +29,7 @@ package-lock.json
3129
/lemur/lib64
3230
/lemur/include
3331

34-
docs/_build
32+
docs/_build/doctrees
3533
.editorconfig
3634
.idea
3735
.pytest_cache

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.10

Caddyfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
:80 {
2+
encode gzip zstd
3+
handle /api/* {
4+
reverse_proxy localhost:8000
5+
}
6+
handle {
7+
root * /opt/lemur/lemur/static/dist
8+
try_files {path} /index.html
9+
file_server
10+
}
11+
}

0 commit comments

Comments
 (0)