Skip to content

Commit f23ddcc

Browse files
authored
chore(dart_frog_cli): v0.0.2-dev.5 (#84)
1 parent 7aa1cce commit f23ddcc

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ Next, open the newly created project and start the dev server via:
4747
dart_frog dev
4848
```
4949

50+
💡 **Tip**: By default port `8080` is used. A custom port can be used via the `--port` option.
51+
5052
### Create a Production Build 📦
5153

5254
Create a production build which includes a `DockerFile` so that you can deploy anywhere:
@@ -267,7 +269,7 @@ In the above test, we're using `package:mocktail` to create a mock `RequestConte
267269

268270
For more information, see the [example][example_link] and our [roadmap][roadmap_link].
269271

270-
*💡 Fun Fact: the [dart2js][dart2js_compiler_link] compiler [used to be called frog][dart2js_frog_pr_link].*
272+
_💡 Fun Fact: the [dart2js][dart2js_compiler_link] compiler [used to be called frog][dart2js_frog_pr_link]._
271273

272274
[dart2js_compiler_link]: https://dart.dev/tools/dart2js
273275
[dart2js_frog_pr_link]: https://github.com/dart-lang/sdk/issues/2194

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ In the interest of transparency, we want to share high-level details of our road
3030

3131
### Features ✨
3232

33+
- [X] Configurable Port
3334
- [ ] Improve HTTP method specification per handler
3435
- [ ] Static Asset support
3536
- [ ] Dart API Client Generation
@@ -39,7 +40,6 @@ In the interest of transparency, we want to share high-level details of our road
3940
- [ ] Health Check endpoint for monitoring
4041
- [ ] Logger which can be configured to adhere to standard log formats (https://cloud.google.com/run/docs/logging)
4142
- [ ] Websocket support
42-
- [ ] Configurable PORT
4343
- [ ] VSCode/IntelliJ support for DartFrog
4444
- [ ] Create a new project
4545
- [ ] New Routes

packages/dart_frog_cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.0.2-dev.5
2+
3+
- feat: support custom ports via `--port`
4+
```sh
5+
# start the dev server on port 3000
6+
dart_frog dev --port 3000
7+
```
8+
19
# 0.0.2-dev.4
210

311
- feat: upgrade brick hook dependencies

packages/dart_frog_cli/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dart_frog_cli/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_frog_cli
22
description: The official command line interface for Dart Frog. Built by Very Good Ventures.
3-
version: 0.0.2-dev.4
3+
version: 0.0.2-dev.5
44
homepage: https://github.com/VeryGoodOpenSource/dart_frog
55

66
environment:

0 commit comments

Comments
 (0)