vibe-docker/source/app.d

18 lines
358 B
D
Raw Normal View History

2018-11-27 10:03:22 +01:00
import vibe.vibe;
void main()
{
auto settings = new HTTPServerSettings;
settings.port = 8080;
settings.bindAddresses = ["::", "0.0.0.0"];
2018-11-27 10:03:22 +01:00
listenHTTP(settings, &hello);
logInfo("Please open http://127.0.0.1:8080/ in your browser.");
runApplication();
}
void hello(HTTPServerRequest, HTTPServerResponse res)
2018-11-27 10:03:22 +01:00
{
2018-11-28 22:11:38 +01:00
res.writeBody("Hello, from Docker!");
2018-11-27 10:03:22 +01:00
}