Upgrade to SDK 2.16.x
This commit is contained in:
parent
b1bd5c341e
commit
5ac098e3f5
4 changed files with 5 additions and 134 deletions
|
@ -43,7 +43,6 @@ This is an ORM starter application for [Angel3 framework](https://angel3-framewo
|
||||||
|
|
||||||
2. Modify the code and watch the changes applied to the application
|
2. Modify the code and watch the changes applied to the application
|
||||||
|
|
||||||
|
|
||||||
3. Insert a message into DB:
|
3. Insert a message into DB:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
|
@ -11,7 +11,7 @@ void main() async {
|
||||||
hierarchicalLoggingEnabled = true;
|
hierarchicalLoggingEnabled = true;
|
||||||
|
|
||||||
var hot = HotReloader(() async {
|
var hot = HotReloader(() async {
|
||||||
var logger = Logger.detached('[Angel3]')
|
var logger = Logger.detached('Angel3')
|
||||||
..level = Level.ALL
|
..level = Level.ALL
|
||||||
..onRecord.listen(prettyLog);
|
..onRecord.listen(prettyLog);
|
||||||
var app = Angel(logger: logger, reflector: MirrorsReflector());
|
var app = Angel(logger: logger, reflector: MirrorsReflector());
|
||||||
|
|
|
@ -17,7 +17,7 @@ import 'package:angel3_production/angel3_production.dart';
|
||||||
// so use it if possible.
|
// so use it if possible.
|
||||||
//
|
//
|
||||||
// However, the following alternatives exist:
|
// However, the following alternatives exist:
|
||||||
// * Generation via `package:angel_container_generator`
|
// * Generation via `package:angel3_container_generator`
|
||||||
// * Creating an instance of `StaticReflector`
|
// * Creating an instance of `StaticReflector`
|
||||||
// * Manually implementing the `Reflector` interface (cumbersome; not recommended)
|
// * Manually implementing the `Reflector` interface (cumbersome; not recommended)
|
||||||
//
|
//
|
||||||
|
@ -26,5 +26,4 @@ import 'package:angel3_production/angel3_production.dart';
|
||||||
//
|
//
|
||||||
// https://gitter.im/angel_dart/discussion
|
// https://gitter.im/angel_dart/discussion
|
||||||
void main(List<String> args) =>
|
void main(List<String> args) =>
|
||||||
Runner('[Angel3]', configureServer, reflector: MirrorsReflector())
|
Runner('Angel3', configureServer, reflector: MirrorsReflector()).run(args);
|
||||||
.run(args);
|
|
||||||
|
|
131
pubspec.yaml
131
pubspec.yaml
|
@ -3,7 +3,7 @@ version: 1.0.0
|
||||||
description: An ORM starter application for Angel3 framework
|
description: An ORM starter application for Angel3 framework
|
||||||
publish_to: none
|
publish_to: none
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.15.0 <3.0.0'
|
sdk: '>=2.16.0 <3.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
angel3_auth: ^6.0.0
|
angel3_auth: ^6.0.0
|
||||||
angel3_configuration: ^6.0.0
|
angel3_configuration: ^6.0.0
|
||||||
|
@ -27,132 +27,5 @@ dev_dependencies:
|
||||||
angel3_test: ^6.0.0
|
angel3_test: ^6.0.0
|
||||||
build_runner: ^2.0.3
|
build_runner: ^2.0.3
|
||||||
io: ^1.0.0
|
io: ^1.0.0
|
||||||
test: ^1.17.5
|
test: ^1.21.0
|
||||||
lints: ^1.0.0
|
lints: ^1.0.0
|
||||||
dependency_overrides:
|
|
||||||
angel3_container:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/container/angel_container
|
|
||||||
angel3_framework:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/framework
|
|
||||||
angel3_http_exception:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/http_exception
|
|
||||||
angel3_model:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/model
|
|
||||||
angel3_route:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/route
|
|
||||||
angel3_mock_request:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/mock_request
|
|
||||||
angel3_auth:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/auth
|
|
||||||
angel3_client:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/client
|
|
||||||
angel3_websocket:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/websocket
|
|
||||||
angel3_validate:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/validate
|
|
||||||
angel3_configuration:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/configuration
|
|
||||||
angel3_test:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/test
|
|
||||||
jael3:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/jael/jael
|
|
||||||
angel3_jael:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/jael/angel_jael
|
|
||||||
jael3_preprocessor:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/jael/jael_preprocessor
|
|
||||||
angel3_serialize:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/serialize/angel_serialize
|
|
||||||
angel3_serialize_generator:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/serialize/angel_serialize_generator
|
|
||||||
angel3_hot:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/hot
|
|
||||||
angel3_static:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/static
|
|
||||||
angel3_production:
|
|
||||||
path: ../belatuk/packages/production
|
|
||||||
# git:
|
|
||||||
# url: https://github.com/dukefirehawk/angel.git
|
|
||||||
# ref: release/6.0.0
|
|
||||||
# path: packages/production
|
|
||||||
angel3_orm:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/orm/angel_orm
|
|
||||||
angel3_orm_generator:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/orm/angel_orm_generator
|
|
||||||
angel3_orm_postgres:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/orm/angel_orm_postgres
|
|
||||||
angel3_migration:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/orm/angel_migration
|
|
||||||
angel3_migration_runner:
|
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: release/6.0.0
|
|
||||||
path: packages/orm/angel_migration_runner
|
|
||||||
|
|
Loading…
Reference in a new issue