You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add org.gradle.daemon=true to allow/encourage reuse from previous builds
Node (with NVM) plus yarn, ?global dev packages eg. nodemon
To install or update nvm, you should run the install script. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
Running either of the above commands downloads a script and runs it. The script clones the nvm repository to ~/.nvm, and adds the source lines from the snippet below to your profile (~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc).
might be worth setting this (but seems to add to ~/.bashrc, so OK
Note: If the environment variable $XDG_CONFIG_HOME is present, it will place the nvm files there.
Note: You can add --no-use to the end of the above script (...nvm.sh --no-use) to postpone using nvm until you manually use it.
You can customize the install source, directory, profile, and version using the NVM_SOURCE, NVM_DIR, PROFILE, and NODE_VERSION variables. Eg: curl ... | NVM_DIR="path/to/nvm". Ensure that the NVM_DIR does not contain a trailing slash.
NB. The installer can use git, curl, or wget to download nvm, whatever is available.
Note: On Linux, after running the install script, if you get nvm: command not found or see no feedback from your terminal after you type command -v nvm, simply close your current terminal, open a new terminal, and try verifying again.
Default global packages from file while installing
If you have a list of default packages you want installed every time you install a new version, we support that too -- just add the package names, one per line, to the file $NVM_DIR/default-packages You can add anything npm would accept as a package argument on the command line.
# $NVM_DIR/default-packages
# examples in install instructions:
rimraf
[email protected]
stevemao/left-pad
####
# SET UP FILE(S) IN THIS REPO WITH POSSIBLE DEFAULT PACKAGES
firebase-tools
###
Install some versions
last one will be the default (also aliased as node)
Probably need 8 and 10 for e.g. cloud function support
?Docker, Portainer, ???config for external image storage
The text was updated successfully, but these errors were encountered:
https://cloudwheels.github.io/TIL/store-secrets-in-git-repo/
git flow?
-DNS tools
sudo apt-get install dnsutils -y
?use gradlew method https://cloudwheels.github.io/TIL/generate-signing-keys-for-android-app/
?Gen a release key
May not be possible, so use:
Create debug keystore...
List
?Gen a release key:
Configure grade daemon
https://cloudwheels.github.io/TIL/improve-gradle-performance/
Create a ~/.gradle/gradle.properties file.
Add
org.gradle.daemon=true
to allow/encourage reuse from previous buildsNode (with NVM) plus yarn, ?global dev packages eg. nodemon
To install or update nvm, you should run the install script. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
Running either of the above commands downloads a script and runs it. The script clones the nvm repository to ~/.nvm, and adds the source lines from the snippet below to your profile (
~/.bash_profile
,~/.zshrc
,~/.profile
, or~/.bashrc
).Note: If the environment variable $XDG_CONFIG_HOME is present, it will place the nvm files there.
Note: You can add
--no-use
to the end of the above script (...nvm.sh --no-use) to postpone using nvm until you manually use it.You can customize the install source, directory, profile, and version using the NVM_SOURCE, NVM_DIR, PROFILE, and NODE_VERSION variables. Eg: curl ... | NVM_DIR="path/to/nvm". Ensure that the NVM_DIR does not contain a trailing slash.
NB. The installer can use git, curl, or wget to download nvm, whatever is available.
Note: On Linux, after running the install script, if you get nvm: command not found or see no feedback from your terminal after you type command -v nvm, simply close your current terminal, open a new terminal, and try verifying again.
Default global packages from file while installing
If you have a list of default packages you want installed every time you install a new version, we support that too -- just add the package names, one per line, to the file
$NVM_DIR/default-packages
You can add anything npm would accept as a package argument on the command line.Install some versions
last one will be the default (also aliased as
node
)Probably need
8
and10
for e.g. cloud function support?Docker, Portainer, ???config for external image storage
The text was updated successfully, but these errors were encountered: