Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
74de1a3
docs: init user guide (espaces, comptes de facturation)
GabBimdata Mar 3, 2026
54008ed
add project page
GabBimdata Mar 4, 2026
9146ab7
add visa, version, ged
GabBimdata Mar 5, 2026
3a2696a
add bcf platform and form
GabBimdata Mar 12, 2026
b2aaa37
add routing for user guide and add user guide on homepage
LrxGaelle Mar 17, 2026
523c79a
adjust home page design
LrxGaelle Mar 17, 2026
90a69a1
delete unused img & add new
LrxGaelle Mar 17, 2026
2f762a4
chore: upgrade Docker image to node:24
NicolasRichel Apr 9, 2026
1a3905a
build(deps-dev): bump axios from 1.13.2 to 1.15.0 (#118)
dependabot[bot] Apr 13, 2026
1977724
build(deps): bump docker/login-action from 3 to 4 (#110)
dependabot[bot] Apr 13, 2026
1812189
build(deps): bump docker/build-push-action from 6 to 7 (#109)
dependabot[bot] Apr 13, 2026
a08b33d
build(deps): bump immutable (#108)
dependabot[bot] Apr 13, 2026
03109a0
build(deps): bump dompurify and swagger-ui (#112)
dependabot[bot] Apr 13, 2026
635b2b5
add documentation & add user-guide sidebar
LrxGaelle Apr 14, 2026
745e95e
fix user guide navigation
LrxGaelle Apr 14, 2026
0ed7563
add new user-guide pages
LrxGaelle Apr 15, 2026
031811f
build(deps): bump follow-redirects from 1.15.11 to 1.16.0 (#119)
dependabot[bot] Apr 16, 2026
9a81e09
build(deps-dev): bump dompurify from 3.3.3 to 3.4.0 (#120)
dependabot[bot] Apr 16, 2026
32e3366
add formulaire img
LrxGaelle Apr 17, 2026
a094895
Merge pull request #121 from bimdata/user-guide
LrxGaelle Apr 17, 2026
f8c7fe2
fix icon import
LrxGaelle Apr 17, 2026
de89bb7
Merge pull request #122 from bimdata/fix/import-icon
LrxGaelle Apr 17, 2026
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
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Login to BIMData Docker Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: docker-registry.bimdata.io
username: ${{ secrets.DOCKER_USER }}
Expand All @@ -28,7 +28,7 @@ jobs:
with:
branch: ${{ github.ref }}
- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: etc/Dockerfile
Expand All @@ -42,7 +42,7 @@ jobs:
needs: build-and-push
steps:
- name: Login to BIMData Docker Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: docker-registry.bimdata.io
username: ${{ secrets.DOCKER_USER }}
Expand Down
4 changes: 2 additions & 2 deletions etc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16
FROM node:24 AS node

WORKDIR /opt

Expand All @@ -7,7 +7,7 @@
RUN npm ci
COPY ./ /opt

ENV NODE_ENV production

Check warning on line 10 in etc/Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN npm run build

Expand All @@ -15,4 +15,4 @@
FROM nginx:stable
RUN rm /etc/nginx/conf.d/default.conf
COPY etc/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=0 /opt/src/.vuepress/dist /usr/share/nginx/html
COPY --from=node /opt/src/.vuepress/dist /usr/share/nginx/html
645 changes: 386 additions & 259 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@bimdata/design-system": "0.3.20",
"sass": "^1.79.3",
"sass-loader": "^10.5.2",
"swagger-ui": "^5.31.0",
"swagger-ui": "^5.32.2",
"swagger-ui-dist": "4.1.3",
"vuepress": "^1.9.10"
}
Expand Down
Loading
Loading