command description Ctrl+Shift+N new window Ctrl+R run project Cmd+Shift+P run command Cmd+P find file
Tips and tricks
Get a google cloud account Install Google Cloud SDK Run the command gcloud auth From GCloud enable: Kubernetes Engine API Google Cloud Build API create a cluster in Kubernetes Run the command: gcloud init Select the project: gcloud config set project $MY_PROJECT_ID select your CLUSTER gcloud container clusters get-credentials YOUR_CLUSTER_NAME --zone us-central1-c Select the kubectl
You need to setup a .gitsubmodules file in the root of your git repository, it looks something like [submodule "common"] path = common url = https://github.com/raduzoom/auth-common.git [submodule "client"] path = client url = https://github.com/raduzoom/ticketing-client.git [submodule "auth"] path = auth url = https://github.com/raduzoom/auth.git [submodule "tickets"] path = tickets url = https://github.com/raduzoom/ticketing-tickets.git [submodule "orders"] path = orders
If you are using angular, you can generate a stats json with this command ng build your-project-name --configuration production --stats-json Then, you can do: webpack-bundle-analyzer -m static dist/out/stats.json
This is an alternative to npm link. npm link but seems undeterministic to me sometimes First go to your project folder where you have the package.json and run this command npm run build find the dist folder and run npm pack Now, right click this .tz file and copy the absolute path. Next go to
Tired of using MAMP ? You should already have Apache installed on mac you just need to start it: sudo apachectl start restart: sudo apachectl restart check config: apachectl configtest optional, if you are on Mac OS X Monterey you might need to uninstall the default Apache 2.4 sudo apachectl stop sudo launchctl unload -w
You can permantly disable App nap: defaults write NSGlobalDomain NSAppSleepDisabled -bool YES