This commit is contained in:
leehk 2025-04-11 15:56:26 +08:00
parent afb90160a3
commit 4810485a01
3 changed files with 2 additions and 13 deletions

View File

@ -17,12 +17,6 @@ jobs:
contents: read
packages: write
steps:
- name: Check disk space before cleanup
run: df -h
- name: Clean up disk space
run: |
docker system prune -af
df -h
- name: Checkout
uses: actions/checkout@v3
with:
@ -50,12 +44,6 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- name: Check disk space before cleanup
run: df -h
- name: Clean up disk space
run: |
docker system prune -af
df -h
- name: Checkout
uses: actions/checkout@v3
with:

View File

@ -0,0 +1 @@
REACT_APP_BASE_URL=https://backend.aimingmed.com/

View File

@ -13,7 +13,7 @@ const App: React.FC = () => {
useEffect(() => {
mounted.current = true;
const ws = new WebSocket('ws://localhost:8000/ws');
const ws = new WebSocket('ws://localhost:8004/ws');
setSocket(ws);
ws.onopen = () => {
console.log('WebSocket connection opened');