Skip to content
Snippets Groups Projects

Resolve "Initial Review"

Merged René Schöne requested to merge 1-initial-review into main
5 files
+ 17
7
Compare changes
  • Side-by-side
  • Inline
Files
5
  • c4ea7aea
    Some ideas. · c4ea7aea
    René Schöne authored
    - replace project_gitlab_id with $System.env.CI_PROJECT_ID, update readme
    - cache gradle distro
    - fix diagram creation
    - add git remote after init
+ 3
1
import sys
import subprocess
PROJECT_URL = '{{cookiecutter.project_url}}'
def main():
subprocess.call(['git', 'init'])
subprocess.call(['git', 'remote', 'add', 'origin', PROJECT_URL])
if __name__ == '__main__':
main()
Loading