github.com/pachyderm/pachyderm@v1.13.4/src/server/enterprise/text/text.go (about)

     1  package text
     2  
     3  // This package contains strings to be used in error messages and calls to
     4  // action for the enterprise product.
     5  
     6  const (
     7  	// OpenSourceProduct is the name of opensource Pachyderm.
     8  	OpenSourceProduct = "Pachyderm Community Edition"
     9  	// EnterpriseProduct is the name of enterprise Pachyderm.
    10  	EnterpriseProduct = "Pachyderm Enterprise"
    11  	// ActivateCTA is a CTA to users to enter their enterprise keys.
    12  	ActivateCTA = "Use the command `pachctl enterprise activate` to enter your key."
    13  	// RegisterCTA is a CTA to users to register for an enterprise key.
    14  	RegisterCTA = `Pachyderm offers readily available activation keys for proofs-of-concept, startups, academic, nonprofit, or open-source projects. Tell us about your project to get one.
    15  
    16  Learn about Pachyderm Enterprise here:
    17  
    18  https://www.pachyderm.com/trial`
    19  )