https://github.com/fluttercommunity/site
Website
https://github.com/fluttercommunity/site
Last synced: about 1 year ago
JSON representation
Website
- Host: GitHub
- URL: https://github.com/fluttercommunity/site
- Owner: fluttercommunity
- Created: 2023-08-23T20:48:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-26T15:50:41.000Z (almost 3 years ago)
- Last Synced: 2025-03-28T15:51:58.605Z (about 1 year ago)
- Language: Dart
- Size: 5.86 KB
- Stars: 4
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Site
Basic start to a community website.
We are building the site in Dart utilising the [Dart Web Platform](https://dart.dev/web) with core web libraries like [dart:html](https://api.dart.dev/stable/3.1.0/dart-html/dart-html-library.html).
We utilise [Jaspr](https://pub.dev/packages/jaspr) to provide a more Flutter centric feel to web development. Check out the [docs](https://docs.page/schultek/jaspr) for more info.
## Prerequisites
Install the [webdev tool](https://dart.dev/tools/webdev)
```sh
dart pub global activate webdev
```
## Run locally with
```sh
webdev serve --auto refresh
```
## Debugging
Install the [Dart Debug Extension](https://chrome.google.com/webstore/detail/dart-debug-extension/eljbmlghnomdjgdjmbdekegdkbabckhm) and run:
```sh
webdev serve --debug-extension
```
or you you use devtools [Debugging Web Info](https://dart.dev/web/debugging)
## Build
```sh
webdev build
```