Skip to content

Commit

Permalink
docs: firebase deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
jjoonleo committed Jan 5, 2024
1 parent 3362a0a commit 31ab2b3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions wiki/02_WEB_HOSTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## web으로 빌드해서 파이어베이스에 deploy

### Build flutter project

1. package 설치
```bash
fvm flutter pub get
```

2. web으로 빌드
```bash
fvm flutter build web
```

### deploy to firebase
1. firebase 설치
```bash
npm install -g firebase-tools
```

2.firebase login
```bash
firebase login
```

3. firebase에 deploy
```bash
firebase deploy
```

0 comments on commit 31ab2b3

Please sign in to comment.