Nik Rubblers
Nik Rubblers

Reputation: 142

How to run Scala project on local Apache - Windows

I received a Scala project to be run locally. I'm on Windows, I've installed MySql (needed by the project), Apache 2.4 configured and started on port 9000 as suggested on Play Framework website, installed sbt and scala.

Now.. I got lost.. I don't understand how am I supposed to publish/deploy the project locally? Which directory is supposed to be the www Apache directory? How am I supposed to tell sbt that I'm running Apache? I cant find any hint around.

Any structured suggestion to help my nut crawling on a bit?

Thank you!

Upvotes: 0

Views: 243

Answers (1)

Rayan Ral
Rayan Ral

Reputation: 1859

Not sure if that would be helpful, but you've mentioned play framework. If your project is made with play, you should be able just to execute sbt run in your project directory, and then your application should be accessible via http://localhost:9000. Details here: https://www.playframework.com/getting-started

Upvotes: 1

Related Questions