Fixus
Fixus

Reputation: 4641

play framework does not want to start new app

I want check what play framework can do BUT I can't start any application. I'm doing like in tutorial, creating new project, then I'm going to directory and I try to start by typing play start

I get onlyt: 12:55:40,265 INFO ~ Listening for HTTP on port 9000 (Waiting a first request to start) ...

The application isn't starting. I've checked diffrent ports but same result

What can it be?

Upvotes: 2

Views: 1620

Answers (1)

Julien Lafont
Julien Lafont

Reputation: 7877

When you see this message, you have to open your browser and go to http://127.0.0.1:9000. The server will continue to execute after the first http request.

Otherwise, you can execute play run to run the server in the current shell.

Upvotes: 3

Related Questions