Reputation: 4641
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
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