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
ARCHIVE
Uncategorized
Posted on December 3 2021
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
Posted on August 31 2021
You can permantly disable App nap: defaults write NSGlobalDomain NSAppSleepDisabled -bool YES

Posted on August 13 2021
docker Build and tag container docker build -t yournameondockerhub/posts . Push container to docker hub docker push yournameondockerhub/posts Run container docker run service/posts kubernetes k8s expose port kubectl port-forward [[pod-name]] 8080:4000 exposes port localhost 8080, the 4000 is the internal node port k8s restart deployment kubectl rollout restart deployment event-bus-depl get the deployment names with
Posted on July 25 2021
Here is a sample apache config with a additional VirtualHost # # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information. # In particular, see # # for a discussion of each configuration directive. # # Do NOT
Posted on May 21 2021
In your terminal type git fetch origin git rebase origin/master
Recent Comments