Merge branch 'master' of github.com:waku-org/waku-frontend into weboko/follow-up

This commit is contained in:
Sasha 2023-11-29 11:57:37 +01:00
commit cc7a1c3b12
No known key found for this signature in database
2 changed files with 9 additions and 1 deletions

View File

@ -24,8 +24,16 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Checkout to waku-frontend
uses: actions/checkout@v3
with:
repository: waku-org/waku-frontend
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
- name: Setup npm
uses: bahmutov/npm-install@v1

View File

@ -29,5 +29,5 @@ npm run serve
```bash
npm run build
docker build -t waku_frontend .
docker run -d -p 300:3000 waku_frontend
docker run -d -p 8080:80 waku_frontend
```