Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
added play framework v1.4 command line cheat sheet (#3783)
Browse files Browse the repository at this point in the history
  • Loading branch information
marti1125 authored and moollaza committed Nov 29, 2016
1 parent 6619b9e commit 2a86798
Showing 1 changed file with 129 additions and 0 deletions.
129 changes: 129 additions & 0 deletions share/goodie/cheat_sheets/json/play14commandline.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
{
"id": "play14commandline_cheat_sheet",
"name": "Play Framework v1.4 Command Line",
"description": "Command Line Cheat Sheet",

"metadata": {
"sourceName": "Play Framework v1.4 Documentation",
"sourceUrl" : "https://playframework.com/documentation/1.4.x/cheatsheet/commandLine"
},

"aliases": [
"play framework v1.4 command line"
],

"template_type": "terminal",

"section_order": [
"Command line"
],

"sections": {
"Command line": [
{
"key": "classpath",
"val": "Display the computed classpath"
},
{
"key": "id",
"val": "Define the framework ID, used for multi-environment configuration"
},
{
"key": "secret",
"val": "Generate a new secret key, used for encryption"
},
{
"key": "install",
"val": "Install a module"
},
{
"key": "list-modules",
"val": "List modules available in the central module repository"
},
{
"key": "modules",
"val": "Display the computed modules list"
},
{
"key": "new",
"val": "Create a new application"
},
{
"key": "new-module",
"val": "Create a module"
},
{
"key": "build-module",
"val": "Build and package a module"
},
{
"key": "eclipsify",
"val": "Create all Eclipse configuration files"
},
{
"key": "netbeansify",
"val": "Create all NetBeans configuration files"
},
{
"key": "idealize",
"val": "Create all IntelliJ Idea configuration files"
},
{
"key": "javadoc",
"val": "Generate your application Javadoc"
},
{
"key": "auto-test",
"val": "Automatically run all application tests"
},
{
"key": "clean",
"val": "Delete temporary files (including the bytecode cache)"
},
{
"key": "test",
"val": "Run the application in test mode in the current shell"
},
{
"key": "precompile",
"val": "Precompile all Java sources and templates to speed up application start-up"
},
{
"key": "war",
"val": "Export the application as a standalone WAR archive"
},
{
"key": "run",
"val": "Run the application in the current shell"
},
{
"key": "start",
"val": "Start the application in the background"
},
{
"key": "stop",
"val": "Stop the running application"
},
{
"key": "restart",
"val": "Restart the running application"
},
{
"key": "out",
"val": "Follow logs/system.out file"
},
{
"key": "pid",
"val": "Show the PID of the running application"
},
{
"key": "check",
"val": "Check for a Play framework release newer than the current one"
},
{
"key": "help",
"val": "Display help on a specific command"
}
]
}
}

0 comments on commit 2a86798

Please sign in to comment.