Application routes are:
/. Landing page./hello. Displays "Hello $TARGET"./author. Displays contact information.
The repository is structured as follows:
.
├── assets/ # Development assets
├── images/ # Images used in the present document
├── source/ # Source code
│ ├── controllers/ # Application behavior
│ ├── models/ # Model definition
│ └── routes/ # Route definition
└── README.md # Present document
For more information see ExpressJS Project Structure.
The app uses the following environment variables:
HELLO_TARGET: target the app will say hello to. Default:Josefina.PORT: port the app will run on. Default:8080.