https://github.com/kkimj/flutter-gitignore-template
flutter & firebase project .gitignore template
https://github.com/kkimj/flutter-gitignore-template
flutter flutter-firebase flutter-gitignore
Last synced: 2 months ago
JSON representation
flutter & firebase project .gitignore template
- Host: GitHub
- URL: https://github.com/kkimj/flutter-gitignore-template
- Owner: KKimj
- License: mit
- Created: 2021-04-10T05:07:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-16T03:01:55.000Z (almost 3 years ago)
- Last Synced: 2025-03-29T09:01:49.042Z (3 months ago)
- Topics: flutter, flutter-firebase, flutter-gitignore
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter-template
Flutter & Firebase project template
## [.gitignore](.gitignore)
## Getting started
```
$ git clone https://github.com/KKimj/flutter-template.git
```## Tips
### Build flutter project, chrome
```
$ flutter run -d chrome
```### Test .dart /test
```
$ flutter test --machine test/widget_test.dart
# or just
$ flutter test
```---
### Release Build, chrome
```
$ flutter run -d chrome --release
# check /build/web/
```### Firebase hosting
```
$ firebase init# Set /build/web for deploy directory to hosting
$ firebase deploy --only hosting
# or just
$ firebase deploy
```