Skip to content

Instantly share code, notes, and snippets.

@timani
Last active October 4, 2015 21:30
Show Gist options
  • Save timani/5f7dd4a1ea0681093143 to your computer and use it in GitHub Desktop.
Save timani/5f7dd4a1ea0681093143 to your computer and use it in GitHub Desktop.

Base commands

Verb	Path	Action	Route Name
GET	/build	index	base.index
GET	/install	install	base.install 

Site commands

// Install dependencies and create directories
Verb	Path	Action	Route Name
GET	/site	index	site.index
GET	/site/init	init	site.init 
GET	/site/{site.uuid}	show	site.show // Show site info
GET	/site/add/{site.uuid}/{user.email}/{user.password}	add	site.add [--site-uuid=<value>] [--user=<value>] [--password=<value>]
GET	/site/{site.uuid}/{site.environment}/remove 	remove	site.remove  [--site-uuid=<value>] [--site-environment=<value> (optional)]
GET	/site/endpoints/{site.uuid}/{site.environment} [--site-uuid=<value>] [--site-environment=<value>]	endpoints	site.endpoints // Show endpoint info for the site

Parse commands

// Install dependencies and create directories
Verb	Path	Action	Route Name
GET	/parse	index	parse.index 
GET	/site/{site.uuid}	show	site.show // Show site info
GET	/site/add/{site.uuid}/{user.email}/{user.password}	add	site.add [--site-uuid=<value>] [--user=<value>] [--password=<value>]
GET	/parse/{site.uuid}/{site.environment}/remove 	remove	site.remove  [--site-uuid=<value>] [--site-environment=<value> (optional)]
GET	/site/report/{site.uuid}/{site.environment}/{report.id} [--site-uuid=<value>] [--site-environment=<value>]	endpoints	site.endpoints // Show endpoint info for the site

Report

Verb	Path	Action	Route Name
GET	/report	index	site.index 
GET	/report/{site.uuid}	show	site.show // Show site info
GET	/report/add/{site.uuid}/{user.email}/{user.password}	add	site.add [--site-uuid=<value>] [--user=<value>] [--password=<value>]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment