-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
56 additions
and
386 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# install docker | ||
curl -sSL https://get.docker.com/ | sh | ||
|
||
# start docker | ||
sudo service docker start | ||
|
||
# pull Codecov Enterprise | ||
docker pull codecov/enterprise | ||
|
||
# create config file | ||
curl http://git.io/v4Aco > codecov.yml | ||
|
||
# Start Codecov | ||
docker run -d -p 80:80 -v codecov.yml:/codecov.yml codecov/enterprise | ||
|
||
ip=ifconfig | grep 'eth0:' -n1 | tail -1 | rev | cut -d' ' -f1 | rev | ||
|
||
echo " | ||
_____ _ | ||
/ ____| | | | ||
| | ___ __| | ___ ___ _____ __ | ||
| | / _ \\ / _\` |/ _ \\/ __/ _ \\ \\ / / | ||
| |___| (_) | (_| | __/ (_| (_) \\ V / | ||
\\_____\\___/ \\__,_|\\___|\\___\\___/ \\_/ | ||
Thank you for choosing Codecov! | ||
Please navigate to http://$ip | ||
PS: In demo mode reports will be deleted after 48 hours | ||
You can request a 45 day license key to have no restrictions. | ||
Inquire at [email protected] | ||
Support: https://github.com/codecov/support | ||
Cheers! | ||
The Codecov Family | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.