generated from Code-Institute-Org/python-essentials-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·14 lines (11 loc) · 815 Bytes
/
setup.sh
File metadata and controls
executable file
·14 lines (11 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
file=".gitpod.dockerfile"
file1=".gitpod.yml"
if [ -f "$file" ] ; then
rm "$file"
fi
if [ -f "$file1" ] ; then
rm "$file1"
fi
mkdir .devcontainer && cd .devcontainer && wget https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/main/.devcontainer/Dockerfile && wget https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/main/.devcontainer/devcontainer.json && wget https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/main/.devcontainer/docker-compose.yml
mkdir build-assets && cd build-assets && wget https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/main/.devcontainer/build-assets/heroku_config.sh && wget https://raw.githubusercontent.com/Code-Institute-Org/ci-full-template/main/.devcontainer/build-assets/make_url.py