Skip to content

Commit

Permalink
chore: client to web
Browse files Browse the repository at this point in the history
  • Loading branch information
aseerkt committed Jun 30, 2024
1 parent 2a2fecb commit 541b2c6
Show file tree
Hide file tree
Showing 105 changed files with 152 additions and 102 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/client-ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: mChat Client CI
name: mChat Web CI

on:
push:
branches:
- main
paths:
- .github/workflows/client-ci.yml
- client/*
- web/*
pull_request:
branches:
- main
paths:
- .github/workflows/client-ci.yml
- client/*
- web/*


jobs:
Expand All @@ -33,13 +33,13 @@ jobs:
cache: 'pnpm'

- name: Install deps
run: pnpm i --filter client
run: pnpm i --filter web

- name: Lint
run: pnpm --filter client lint
run: pnpm --filter web lint

- name: Build
run: pnpm --filter client build
run: pnpm --filter web build



4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

### Run final build using docker compose

- Spin up entire stack (redis, mongo, client, server)
- Spin up entire stack (redis, mongo, web, server)
```bash
docker compose -f docker-compose.prod.yml up --build
```
Expand All @@ -39,7 +39,7 @@ docker compose up -d
pnpm i
```

- Run development server (client & server)
- Run development server (web & server)
```bash
pnpm dev
```
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ services:
ports:
- 6379:6379

client:
web:
build:
context: ./client
context: ./web
dockerfile: Dockerfile
ports:
- 3000:3000
Expand Down
215 changes: 133 additions & 82 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 541b2c6

Please sign in to comment.