forked from apolloconfig/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request apolloconfig#1053 from nobodyiam/env-description
add environments' description
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,19 @@ | |
import com.google.common.base.Preconditions; | ||
|
||
/** | ||
* Here is the brief description for all the predefined environments: | ||
* <ul> | ||
* <li>LOCAL: Local Development environment, assume you are working at the beach with no network access</li> | ||
* <li>DEV: Development environment</li> | ||
* <li>FWS: Feature Web Service Test environment</li> | ||
* <li>FAT: Feature Acceptance Test environment</li> | ||
* <li>UAT: User Acceptance Test environment</li> | ||
* <li>LPT: Load and Performance Test environment</li> | ||
* <li>PRO: Production environment</li> | ||
* <li>TOOLS: Tooling environment, a special area in production environment which allows | ||
* access to test environment, e.g. Apollo Portal should be deployed in tools environment</li> | ||
* </ul> | ||
* | ||
* @author Jason Song([email protected]) | ||
*/ | ||
public enum Env{ | ||
|