⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Play2 Server for <site> | |
After=network.target | |
[Service] | |
Type=simple | |
PIDFile=<path>/RUNNING_PID | |
ExecStartPre=/bin/sh -c 'cd <path> ;/bin/rm RUNNING_PID ; sbt clean compile stage' | |
ExecStart=<path>/target/start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ext; | |
import java.io.StringWriter; | |
import jj.play.org.eclipse.mylyn.wikitext.core.parser.MarkupParser; | |
import jj.play.org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder; | |
import jj.play.org.eclipse.mylyn.wikitext.textile.core.TextileLanguage; | |
import play.templates.JavaExtensions; | |
public class TextileExtension extends JavaExtensions { |