Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Typesafe activator on OSX

I am trying to install the typesafe activator (scala, AKKA, play framework, activator)

I have Yosemite OSX

My bash is Oh my ZSH

I already have JDK 1.7, installed and exported

I downloaded and unzipped the file "typesafe-activator-1.2.10-minimal". Finally I put the export path on my ~/.zshrc

but when I type activator on the terminal it prints that cant find the file

thank you

like image 275
agusgambina Avatar asked Nov 06 '14 04:11

agusgambina


People also ask

Is typesafe activator open source?

Just over three months ago we released the first developer preview of Typesafe Activator. Since then developers have been raving about how easy it is to start building applications on the Typesafe Platform using Activator. Today we are excited to announce that Activator is open source!

What's new in this release of activator?

This release includes 21 template applications that make it easy to get started with Play Framework, Akka and Scala. The community has been contributing some great templates and so can you! With Activator now being open source we are excited to see what else the community will contribute.

Will activator ever be open source?

With Activator now being open source we are excited to see what else the community will contribute. We’ve heard some are already working on new features like an integrated Scala REPL. We can’t wait to see where this goes!

How to use activator with an SBT plugin?

An sbt plugin can communicate with Activator’s JavaScript UI using sbt-core-next APIs, so the only need to modify Activator itself will be the pure UI (JS and HTML). For example, to add Activator support for Play Framework, we modified the Play plugin to send an event containing the application URL when the Play server has started up.


2 Answers

For people like me, who are reading this in 2019 (or later) and are unable to find activator recipee in homebrew, be informed that activator has been decommissioned

Good news is, it's fairly simple to create new projects (including templates for play, akka etc.) with sbt new command and Giter8 templates.

like image 152
Niks Avatar answered Sep 30 '22 02:09

Niks


get HomeBrew. play documentation says this : Play install on mac

But there have been some changes to that. Now you have to do this.

Try this:

brew install typesafe-activator

And then use activator command to start it

like image 41
phoenix Avatar answered Sep 30 '22 02:09

phoenix