Easy solution for integrating time capturing into your github workflow
We have been tired of
in short seperation of concernes:
git clone https://github.com/miwo100/tikki.git
cd tikki
cd graphqlServer
npm install
npm run start
cd ..
cd webApp
npm install
npm run start
direct browser to http://localhost:4200
if you like to work with git from the command line please use these settings:
your identity
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
only push current branch
git config --global push.default simple
cache credentials
git config --global credential.helper cache
git config --global credential.helper 'cache --timeout=3600'