github.com/tickoalcantara12/micro/v3@v3.0.0-20221007104245-9d75b9bcbab9/client/cli/new/template/readme.go (about)

     1  package template
     2  
     3  var (
     4  	Readme = `# {{title .Alias}} Service
     5  
     6  This is the {{title .Alias}} service
     7  
     8  Generated with
     9  
    10  ` + "```" +
    11  		`
    12  micro new {{.Alias}}
    13  ` + "```" + `
    14  
    15  ## Usage
    16  
    17  Generate the proto code
    18  
    19  ` + "```" +
    20  		`
    21  make proto
    22  ` + "```" + `
    23  
    24  Run the service
    25  
    26  ` + "```" +
    27  		`
    28  micro run .
    29  ` + "```"
    30  )