Created
November 24, 2015 00:45
-
-
Save levlaz/6ebfeac20aa769defc72 to your computer and use it in GitHub Desktop.
Sample Markdown
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
# Top Level Heading | |
First Item | |
Second Item | |
Third Item | |
Regular Paragraph | |
You can also make [links](https://google.com) to all sorts of stuff. The best part is you can include code blocks to make it really shine. | |
For example this is a sample `circle.yml` file | |
<pre> | |
test: | |
post: | |
- python manage.py test --coverage | |
- cp -R tmp/coverage/* $CIRCLE_ARTIFACTS | |
- mkdir -p $CIRCLE_TEST_REPORTS/python/ | |
- mv *.xml $CIRCLE_TEST_REPORTS/python/ | |
deployment: | |
push_to_linode: | |
branch: master | |
commands: | |
- rsync -avz app [email protected]:/var/www | |
- rsync -avz *.{py,txt} [email protected]:/var/www | |
</pre> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment