mirror of
				https://github.com/beego/bee.git
				synced 2025-10-31 12:33:21 +00:00 
			
		
		
		
	Merge pull request #563 from luhuisicnu/develop
Use quoted strings in bee help api
This commit is contained in:
		| @@ -35,7 +35,7 @@ var CmdApiapp = &commands.Command{ | ||||
|   The command 'api' creates a Beego API application. | ||||
|  | ||||
|   {{"Example:"|bold}} | ||||
|       $ bee api [appname] [-tables=""] [-driver=mysql] [-conn=root:@tcp(127.0.0.1:3306)/test] | ||||
|       $ bee api [appname] [-tables=""] [-driver=mysql] [-conn="root:@tcp(127.0.0.1:3306)/test"] | ||||
|  | ||||
|   If 'conn' argument is empty, the command will generate an example API application. Otherwise the command | ||||
|   will connect to your database and generate models based on the existing tables. | ||||
|   | ||||
| @@ -24,7 +24,7 @@ var CmdHproseapp = &commands.Command{ | ||||
|  | ||||
|   {{"To scaffold out your application, use:"|bold}} | ||||
|  | ||||
|       $ bee hprose [appname] [-tables=""] [-driver=mysql] [-conn=root:@tcp(127.0.0.1:3306)/test] | ||||
|       $ bee hprose [appname] [-tables=""] [-driver=mysql] [-conn="root:@tcp(127.0.0.1:3306)/test"] | ||||
|  | ||||
|   If 'conn' is empty, the command will generate a sample application. Otherwise the command | ||||
|   will connect to your database and generate models based on the existing tables. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Faissal Elamraoui
					Faissal Elamraoui