by Tim Koepsel / xzessmedia
A boilerplate for rapid CI development
- Bare Clone repository like this
git clone https://github.com/xzessmedia/xci-boilerplate.git --bare <projectname>
- Create a new git repository and then push it like this
git push --mirror <your_new_repo_url_here>
- Delete the local repository
- Clone your new copy
git clone <your_new_repo_url_here>
- Add Upstream with
git remote add upstream https://github.com/xzessmedia/xci-boilerplate.git
andgit remote set-url --push upstream DISABLE
When you develop your CI App it can happen that the boilerplate has been updated Then you want to get the latest update to your project by
git fetch upstream
git pull upstream master
Update the Submodule by ``
git submodule update --init --recursive --force –remote
First install the project locally
# install deps
npm install
- Open
.env
File and add your settings
Run Compile
npm run compile