Skip to content

Commit 911826e

Browse files
authored
Merge pull request #66 from SteamClientHomebrew/next
Next
2 parents 6094f93 + 1130052 commit 911826e

181 files changed

Lines changed: 1602 additions & 2741 deletions

File tree

Some content is hidden

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

.github/workflows/deploy.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,30 +32,30 @@ jobs:
3232

3333
- name: Authenticate SteamBrew
3434
run: |
35-
printf '%s\nDB_PATH=/home/ubuntu/net/storage/steambrew/steambrew.db\nPLUGINS_DIR=/home/ubuntu/net/storage/steambrew/plugins\n' "$BEARER" > ./apps/www/.env
35+
printf '%s\nDB_PATH=/home/ubuntu/net/storage/steambrew/steambrew.db\nPLUGINS_DIR=/home/ubuntu/net/storage/steambrew/plugins\n' "$BEARER" > ./steambrew/www/.env
3636
env:
3737
BEARER: ${{ secrets.BEARER }}
3838

3939
- name: Install and build docs
40-
working-directory: apps/docs
40+
working-directory: steambrew/docs
4141
run: bun install --frozen-lockfile && bun run build
4242

4343
- name: Install www dependencies
44-
working-directory: apps/www
44+
working-directory: steambrew/www
4545
run: bun install --frozen-lockfile
4646

4747
- name: Build www
48-
working-directory: apps/www
48+
working-directory: steambrew/www
4949
run: bun run build
5050

5151
- name: Install Playwright browsers
5252
if: ${{ inputs.run_tests != false }}
53-
working-directory: apps/www
53+
working-directory: steambrew/www
5454
run: bunx playwright install --with-deps chromium
5555

5656
- name: Start production server
5757
if: ${{ inputs.run_tests != false }}
58-
working-directory: apps/www
58+
working-directory: steambrew/www
5959
run: bun run start &
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -67,15 +67,15 @@ jobs:
6767

6868
- name: Run tests
6969
if: ${{ inputs.run_tests != false }}
70-
working-directory: apps/www
70+
working-directory: steambrew/www
7171
run: bun run test
7272

7373
- name: Upload Playwright report
7474
if: ${{ inputs.run_tests != false && always() }}
7575
uses: actions/upload-artifact@v4
7676
with:
7777
name: playwright-report
78-
path: apps/www/playwright-report/
78+
path: steambrew/www/playwright-report/
7979
retention-days: 7
8080

8181
- name: Set up SSH
@@ -89,13 +89,13 @@ jobs:
8989
- name: Sync www
9090
run: |
9191
rsync -az --delete \
92-
apps/www/.next apps/www/public apps/www/package.json apps/www/.env \
92+
steambrew/www/.next steambrew/www/public steambrew/www/package.json steambrew/www/.env \
9393
ubuntu@${{ secrets.SSH_HOST }}:~/net/steambrew/www/
9494
9595
- name: Sync docs
9696
run: |
9797
rsync -az --delete \
98-
apps/docs/.vitepress/dist/ \
98+
steambrew/docs/.vitepress/dist/ \
9999
ubuntu@${{ secrets.SSH_HOST }}:~/net/steambrew/docs/
100100
101101
- name: Install deps and swap

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ api/node_modules
5353
**/.env
5454

5555
# vitepress cache & build
56-
**/apps/docs/.vitepress/dist
57-
**/apps/docs/.vitepress/cache
56+
/steambrew/docs/.vitepress/cache
57+
/steambrew/docs/.vitepress/dist
5858
CLAUDE.md
5959
bun.lock

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Documentation and website assets for Millennium. This repository also includes t
66

77
## Contents
88

9-
- [User API](./apps/www/src/app/api)
10-
- [Documentation](./apps/docs/)
11-
- [SteamBrew App](./apps/www/)
9+
- [User API](./steambrew/www/src/app/api)
10+
- [Documentation](./steambrew/docs/)
11+
- [SteamBrew App](./steambrew/www/)
1212

1313
## Building
1414

0 commit comments

Comments
 (0)