-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding Environment Variables #41
Conversation
@nelsonic I'll need to look for more things so I can make a better summary of the environment variables. |
@@ -496,6 +496,21 @@ deleteAll() async { | |||
|
|||
``` | |||
|
|||
## Environment Variables | |||
|
|||
Environment variables are variables like those we create in our applications. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@miguelmartins17 rather than explaining what environment variables are (incompletely),
we should just point people to: https://github.com/dwyl/learn-environment-variables#what
## Environment Variables | ||
|
||
Environment variables are variables like those we create in our applications. | ||
They are dynamically named values in the operating system, which affect the behavior of the programs that consume it. They are stored in a "list" of key-values. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes and No. This explanation is incomplete. We are better off adding more detail to our existing tutorial on this topic https://github.com/dwyl/learn-environment-variables and then linking to it from learn-flutter
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@miguelmartins17 it's a good idea to add a section on Environment Variables, but we need to add an example of how to use them. Also, we should link to our existing doc that has a more extensive explanation of why they are needed: https://github.com/dwyl/learn-environment-variables
Co-Authored-By: Nelson <contact.nelsonic+github@gmail.com>
@nelsonic Of course I'll work on it tomorrow! |
Cool. Now sleep! 🛌 😉 |
This content is now in |
Add what are the environment variables and which package should be used in Flutter.