Skip to content

Commit 7b408e9

Browse files
committed
move refactored to server dir
1 parent 3aab352 commit 7b408e9

File tree

183 files changed

+9
-9
lines changed

Some content is hidden

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

183 files changed

+9
-9
lines changed

.github/workflows/jest-codecov.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_dispatch:
44
defaults:
55
run:
6-
working-directory: ./server-refactored-v3
6+
working-directory: ./server
77
jobs:
88
codecov:
99
runs-on: ubuntu-latest
@@ -16,5 +16,5 @@ jobs:
1616
- name: Upload coverage reports to Codecov
1717
uses: codecov/codecov-action@v5
1818
with:
19-
directory: server-refactored-v3/coverage
19+
directory: server/coverage
2020
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/jest-pr.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
pull-requests: write
77
defaults:
88
run:
9-
working-directory: ./server-refactored-v3
9+
working-directory: ./server
1010
jobs:
1111
build-test:
1212
runs-on: ubuntu-latest
@@ -19,11 +19,11 @@ jobs:
1919
- name: Jest Coverage Comment
2020
uses: MishaKav/jest-coverage-comment@main
2121
with:
22-
coverage-summary-path: server-refactored-v3/coverage/coverage-summary.json
23-
junitxml-path: server-refactored-v3/reports/jest-junit.xml
22+
coverage-summary-path: server/coverage/coverage-summary.json
23+
junitxml-path: server/reports/jest-junit.xml
2424
- uses: actions/upload-artifact@v4 # upload test results
2525
if: ${{ !cancelled() }} # run this step even if previous step failed
2626
with:
2727
name: test-results # Name of the check run which will be created
28-
path: server-refactored-v3/reports/jest-junit.xml
28+
path: server/reports/jest-junit.xml
2929
reporter: jest-junit # Format of test results

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ENV NODE_ENV=development
44
WORKDIR /build
55

66
## Server
7-
COPY server-refactored-v3 ./server
7+
COPY server ./server
88
RUN cd /build/server && \
99
yarn install
1010
RUN cd /build/server && \
@@ -33,7 +33,7 @@ COPY --from=build /build/server/src/deployments/templates /app/server/deployment
3333
COPY --from=build /build/server/node_modules /app/server/node_modules
3434

3535
# temporary fix for the public folder
36-
COPY --from=build /build/server-refactored-v3/dist/public /app/server/public
36+
COPY --from=build /build/server/dist/public /app/server/public
3737

3838

3939
RUN echo -n $VERSION > /app/server/VERSION

client/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default defineConfig({
5454
extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue'],
5555
},
5656
build: {
57-
outDir: '../server-refactored-v3/dist/public',
57+
outDir: '../server/dist/public',
5858
emptyOutDir: true,
5959
},
6060
server: {

0 commit comments

Comments
 (0)