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
npm link method on your angular project library, run npm run build projectname then in Terminal, navigate on dist/projectname and run npm link this should create a global symlink in the global npm packages folder, you can find it if you run %APPDATA% and go to npm/node_modules, then if you open it with terminal and
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