├── .gitignore ├── .travis.yml ├── LICENSE ├── Procfile ├── README.md ├── analysis_options.yaml ├── bin └── main.dart ├── client.html ├── config.src.yaml ├── config.yaml ├── heroku.yaml ├── lib ├── channel.dart ├── hello_aqueduct.dart └── src │ ├── controllers │ ├── articles.dart │ ├── categories.dart │ ├── favorites.dart │ ├── login.dart │ ├── register.dart │ └── users.dart │ ├── services │ └── mongo.dart │ └── utils │ ├── authorization.dart │ ├── constants.dart │ ├── multipart.dart │ ├── passwod.dart │ └── token.dart ├── pubspec.lock ├── pubspec.yaml └── test ├── example_test.dart └── harness └── app.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/bin/main.dart -------------------------------------------------------------------------------- /client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/client.html -------------------------------------------------------------------------------- /config.src.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /heroku.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/channel.dart -------------------------------------------------------------------------------- /lib/hello_aqueduct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/hello_aqueduct.dart -------------------------------------------------------------------------------- /lib/src/controllers/articles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/controllers/articles.dart -------------------------------------------------------------------------------- /lib/src/controllers/categories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/controllers/categories.dart -------------------------------------------------------------------------------- /lib/src/controllers/favorites.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/controllers/favorites.dart -------------------------------------------------------------------------------- /lib/src/controllers/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/controllers/login.dart -------------------------------------------------------------------------------- /lib/src/controllers/register.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/controllers/register.dart -------------------------------------------------------------------------------- /lib/src/controllers/users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/controllers/users.dart -------------------------------------------------------------------------------- /lib/src/services/mongo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/services/mongo.dart -------------------------------------------------------------------------------- /lib/src/utils/authorization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/utils/authorization.dart -------------------------------------------------------------------------------- /lib/src/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/utils/constants.dart -------------------------------------------------------------------------------- /lib/src/utils/multipart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/utils/multipart.dart -------------------------------------------------------------------------------- /lib/src/utils/passwod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/utils/passwod.dart -------------------------------------------------------------------------------- /lib/src/utils/token.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/lib/src/utils/token.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/example_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/test/example_test.dart -------------------------------------------------------------------------------- /test/harness/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekAbdelouahed/Aqueduct-MongoDB/HEAD/test/harness/app.dart --------------------------------------------------------------------------------