Last active
October 25, 2018 18:07
-
-
Save topherbullock/9ab40b17b40d4f977f0496c95697f21e to your computer and use it in GitHub Desktop.
simple web stuff
This file contains hidden or 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
<html> | |
<h1> hello! </h1> | |
</html> |
This file contains hidden or 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
--- | |
platform: linux | |
image_resource: | |
type: docker-image | |
source: | |
repository: python | |
inputs: | |
- name: html | |
run: | |
path: bash | |
args: | |
- -c | |
- cd html && python -m http.server 8000 | |
This file contains hidden or 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
#!/bin/bash | |
pushd html | |
python -m http.server 8000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment