Updated dependencies
This commit is contained in:
parent
54afecd3bc
commit
233f10b384
7 changed files with 49 additions and 10 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -88,3 +88,6 @@ logs/
|
|||
*.pem
|
||||
.DS_Store
|
||||
server_log.txt
|
||||
|
||||
.metals/
|
||||
.vscode/
|
||||
|
|
|
@ -6,7 +6,7 @@ import 'package:angel_framework/angel_framework.dart';
|
|||
import 'package:angel_hot/angel_hot.dart';
|
||||
import 'package:logging/logging.dart';
|
||||
|
||||
main() async {
|
||||
void main() async {
|
||||
// Watch the config/ and web/ directories for changes, and hot-reload the server.
|
||||
hierarchicalLoggingEnabled = true;
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import 'package:angel_migration_runner/angel_migration_runner.dart';
|
|||
import 'package:angel_migration_runner/postgres.dart';
|
||||
import 'package:file/local.dart';
|
||||
|
||||
main(List<String> args) async {
|
||||
void main(List<String> args) async {
|
||||
var fs = LocalFileSystem();
|
||||
var configuration = await loadStandaloneConfiguration(fs);
|
||||
var connection = await connectToPostgres(configuration);
|
||||
|
|
|
@ -25,6 +25,6 @@ import 'package:angel_production/angel_production.dart';
|
|||
// so in the meantime, visit the Angel chat for further questions:
|
||||
//
|
||||
// https://gitter.im/angel_dart/discussion
|
||||
main(List<String> args) =>
|
||||
void main(List<String> args) =>
|
||||
Runner('{{angel}}', configureServer, reflector: MirrorsReflector())
|
||||
.run(args);
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# Default server configuration.
|
||||
jwt_secret: INSECURE_DEFAULT_SECRET
|
||||
host: 127.0.0.1
|
||||
mongo_db: mongodb://localhost:27017/angel
|
||||
# mongo_db: mongodb://localhost:27017/angel
|
||||
port: 3000
|
||||
postgres:
|
||||
# database_name: angel
|
||||
username: postgres
|
||||
password: postgres
|
||||
database_name: angel
|
||||
username: angel
|
||||
password: angel2020
|
||||
|
|
|
@ -8,7 +8,7 @@ part of 'greeting.dart';
|
|||
|
||||
class GreetingMigration extends Migration {
|
||||
@override
|
||||
up(Schema schema) {
|
||||
void up(Schema schema) {
|
||||
schema.create('greetings', (table) {
|
||||
table.serial('id')..primaryKey();
|
||||
table.varChar('message');
|
||||
|
@ -18,7 +18,7 @@ class GreetingMigration extends Migration {
|
|||
}
|
||||
|
||||
@override
|
||||
down(Schema schema) {
|
||||
void down(Schema schema) {
|
||||
schema.drop('greetings');
|
||||
}
|
||||
}
|
||||
|
|
38
pubspec.yaml
38
pubspec.yaml
|
@ -2,7 +2,7 @@ name: angel
|
|||
description: An app that's going to be amazing pretty soon.
|
||||
publish_to: none # Ensure we don't accidentally publish our private code! ;)
|
||||
environment:
|
||||
sdk: '>=2.0.0-dev <3.0.0'
|
||||
sdk: '>=2.10.0 <2.12.0'
|
||||
homepage: https://github.com/angel-dart/angel
|
||||
dependencies:
|
||||
angel_auth: ^2.0.0 # Supports stateless authentication via JWT
|
||||
|
@ -26,3 +26,39 @@ dev_dependencies:
|
|||
io: ^0.3.2 # For pretty printing.
|
||||
pedantic: ^1.0.0 # Enforces Dart style conventions.
|
||||
test: ^1.0.0 # For unit testing.
|
||||
dependency_overrides:
|
||||
angel_auth:
|
||||
path: ../angel/packages/auth
|
||||
angel_configuration:
|
||||
path: ../angel/packages/configuration
|
||||
angel_framework:
|
||||
path: ../angel/packages/framework
|
||||
angel_jael:
|
||||
path: ../angel/packages/jael/angel_jael
|
||||
angel_migration:
|
||||
path: ../angel/packages/orm/angel_migration
|
||||
angel_orm:
|
||||
path: ../angel/packages/orm/angel_orm
|
||||
angel_orm_postgres:
|
||||
path: ../angel/packages/orm/angel_orm_postgres
|
||||
angel_serialize:
|
||||
path: ../angel/packages/serialize/angel_serialize
|
||||
angel_production:
|
||||
path: ../angel/packages/production
|
||||
angel_static:
|
||||
path: ../angel/packages/static
|
||||
angel_validate:
|
||||
path: ../angel/packages/validate
|
||||
angel_hot:
|
||||
path: ../angel/packages/hot
|
||||
angel_test:
|
||||
path: ../angel/packages/test
|
||||
angel_migration_runner:
|
||||
path: ../angel/packages/orm/angel_migration_runner
|
||||
angel_orm_generator:
|
||||
path: ../angel/packages/orm/angel_orm_generator
|
||||
angel_serialize_generator:
|
||||
path: ../angel/packages/serialize/angel_serialize_generator
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue