Skip to content

Commit b27aa77

Browse files
committed
fix readme
1 parent d3eea5a commit b27aa77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ How to separate your credentials, secrets, and configurations from your source c
66

77
## <a id="intro"></a>Introduction
88

9-
As a modern application, your application always deals with credentials, secrets, and configurations to connect to other services like an Authentication service, Database, Cloud services, Microservices, etc. It is not a good idea to keep your username, password and other credentials in your application source code as your credentials may leak when you share or publish the application. You need to delete or remark those credentials before you share the code which adds extra work for you. And eventually, you may forget to do it. You may pass the credentials information to the application via the command line arguments, but someone may see the information on your screen as well.
9+
As a modern application, your application always deals with credentials, secrets, and configurations to connect to other services like an Authentication service, Database, Cloud services, Microservices, etc. It is not a good idea to keep your username, password and other credentials in your application source code as your credentials may leak when you share or publish the application. You need to delete or remark those credentials before you share the code which adds extra work for you. And eventually, you may forget to do it. You may pass the credentials to the application via the command line arguments, but someone may see those credentials on your screen as well.
1010

11-
The services configurations such as API endpoint, Database URL should not be hard coded in the source code too. The reason is every time you change or update the configurations you need to modify the code which may lead to more errors.
11+
The services configurations such as API endpoint, Database URL, etc should not be hard coded in the source code too. The reason is every time you change or update the configurations you need to modify the code which may lead to more errors.
1212

1313
How should we solve this issue?
1414

0 commit comments

Comments
 (0)