Skip to content

Commit 2c5d06d

Browse files
committed
move to root, adapt to phone
1 parent dd941d5 commit 2c5d06d

File tree

2,416 files changed

+771355
-928
lines changed

Some content is hidden

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

2,416 files changed

+771355
-928
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.obj filter=lfs diff=lfs merge=lfs -text
2+
*.mtl filter=lfs diff=lfs merge=lfs -text

.github/workflows/deploy-node.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- website
77
paths:
8-
- 'website_node/**'
98
- '.github/workflows/deploy-node.yml'
109
workflow_dispatch:
1110

@@ -27,27 +26,29 @@ jobs:
2726
uses: actions/checkout@v4
2827

2928
- name: Generate package-lock.json for caching
30-
working-directory: ./website_node
31-
run: npm install --package-lock-only
29+
working-directory: ./
30+
run: |
31+
npm install --package-lock-only
3232
3333
- name: Setup Node.js
3434
uses: actions/setup-node@v4
3535
with:
3636
node-version: '25'
3737
cache: 'npm'
38-
cache-dependency-path: website_node/package-lock.json
38+
cache-dependency-path: ./package-lock.json
3939

4040
- name: Setup Pages
4141
uses: actions/configure-pages@v4
4242

4343
- name: Install dependencies
44-
working-directory: ./website_node
45-
run: npm ci
44+
working-directory: ./
45+
run: |
46+
npm ci
4647
4748
- name: Upload artifact
4849
uses: actions/upload-pages-artifact@v3
4950
with:
50-
path: ./website_node/public
51+
path: ./public
5152

5253
deploy:
5354
environment:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
__pycache__/
33
*.py[cod]
44
*$py.class
5+
package-lock.json
56

67
# C extensions
78
*.so
File renamed without changes.
File renamed without changes.

node_modules/.bin/mime

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/nodemon

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/nodetouch

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)