Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

server: add server with git history. #322

Merged
merged 29 commits into from
Nov 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b667c16
initial commit
jkhsjdhjs Mar 30, 2024
65b0796
add readme
jkhsjdhjs Mar 30, 2024
38303ef
move nginx config to subdirectory
jkhsjdhjs Mar 30, 2024
73bf9e8
`docker build` is deprecated
jkhsjdhjs Mar 30, 2024
46545f6
Dockerfile: update a comment
jkhsjdhjs Mar 30, 2024
e9ee8b0
README.md: Add link to API specification
s-heppner Apr 1, 2024
9f4b9ca
readme: add note about windows paths
jkhsjdhjs Jun 13, 2024
7fe62b4
readme: move a link to the bottom
jkhsjdhjs Jun 13, 2024
dd92330
nginx: add CORS header
jkhsjdhjs Jun 15, 2024
1f62df9
app: support AASX files
jkhsjdhjs Jun 15, 2024
31f9ea3
app: support JSON and XML files
zrgt Aug 21, 2024
b32c97c
Revert "app: support JSON and XML files "
zrgt Aug 21, 2024
73569bf
app: Add support of JSON and XML files
zrgt Aug 21, 2024
f8c81ba
app: lower the suffixes
zrgt Sep 2, 2024
6ad831f
Remove comments
zrgt Sep 3, 2024
bfbf677
Dockerfile: Update branch
s-heppner Sep 25, 2024
edd21b1
Merge pull request #5 from rwth-iat/Fix/UpdateBranch
zrgt Sep 26, 2024
32c35b9
Add docker compose file (#6)
otto-ifak Oct 4, 2024
1e6e4e4
app/main.py: Fix default storage_path (#7)
Frosty2500 Oct 14, 2024
4078a0a
Dockerfile: Change the path to the main Eclipse BaSyx Python SDK repo…
s-heppner Oct 21, 2024
2ff0234
Merge pull request #10 from rwth-iat/Dockerfile/SDKSource
zrgt Oct 21, 2024
4da7f14
Adapt Dockerfile to new BaSyx-Python SDK repository structure
s-heppner Nov 4, 2024
d8c5ef6
Merge pull request #13 from rwth-iat/Fix/Dockerfile/InstallPath
Ornella33 Nov 4, 2024
7cfe4de
Refactor towards a Dockerfile from Python-Alpine (#11)
Frosty2500 Nov 6, 2024
ef826c6
Merge remote-tracking branch 'server/main' into add_server_to_basyx
Frosty2500 Nov 11, 2024
e39a39e
implement requested changes
Frosty2500 Nov 15, 2024
947d3ba
implement requested changes
Frosty2500 Nov 15, 2024
317ac0b
remove unfinished ci changes
Frosty2500 Nov 15, 2024
898c1dd
add docker-compose documentation
Frosty2500 Nov 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unfinished ci changes
Frosty2500 committed Nov 15, 2024
commit 317ac0bb3409f814ec3ca9b5d8eb6abad83da587
44 changes: 0 additions & 44 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -146,47 +146,3 @@ jobs:
- name: Create source and wheel dist
run: |
python -m build


server-static-analysis:
# This job runs static code analysis, namely pycodestyle and mypy
# TODO: check shell scripts and Dockerfile with tools like ShellCheck and hadolint
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.X_PYTHON_VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.X_PYTHON_VERSION }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Check typing with MyPy
run: |
mypy app test
- name: Check code style with PyCodestyle
run: |
pycodestyle --count --max-line-length 120 app test
server-package:
# This job checks if we can build our server package
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.X_PYTHON_VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.X_PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Create source and wheel dist
run: |
python -m build