Installation & Setup
Getting Started
Installation
Prerequisites
$ pub global activate angel_cli$ angel init hello$ angel initNext Up...
Last updated
$ pub global activate angel_cli$ angel init hello$ angel initLast updated
.idea/ - IntelliJ metadata.
.vscode/ - VSCode metadata.
bin/ - Contains a script to run the application.
config/ - Static configuration files.
lib/
src/
config/ - Attach miscellaneous plugins to your application.
plugins/ - Plugins you have written yourself.
models/ - In-code representations of the data your application manages.
routes/ - Routing config
controllers/ - Contains your controllers.
services/ - Contains RESTful services.
validators/ - Contains validators that can validate input on the client and server sides.
test/ - Test files for services and endpoints.
tool/ - Helper files for build/task tools, such as Grinder.
views/ - Mustache views.
web/ - Client-side code.# Use the `--observe` flag to enable hot reloading in Angel.
dart --observe bin/server.dart