Skip to content

Instantly share code, notes, and snippets.

@noahgift
Created December 2, 2020 15:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noahgift/25cbeba2027e90396c650232a7f6bf60 to your computer and use it in GitHub Desktop.
Save noahgift/25cbeba2027e90396c650232a7f6bf60 to your computer and use it in GitHub Desktop.
codespace ➜ ~/workspace/codespace-devops (main) $ history
1 2020-12-02 15:05:07 touch Makefile
2 2020-12-02 15:06:05 touch requirements.txt
3 2020-12-02 15:06:12 touch hello.py
4 2020-12-02 15:07:02 git add *
5 2020-12-02 15:07:12 git commit -m "adding basic structure"
6 2020-12-02 15:08:57 git add requirements.txt
7 2020-12-02 15:09:08 git commit -m "adding requirements.txt"
8 2020-12-02 15:11:12 python3
9 2020-12-02 15:11:41 virtualenv ~/.codespace
10 2020-12-02 15:11:52 source ~/.codespace/bin/activate
11 2020-12-02 15:13:44 python hello.py
12 2020-12-02 15:15:19 chmod +x hello.py
13 2020-12-02 15:15:22 ./hello.py --help
14 2020-12-02 15:18:18 ./hello.py --path . --ftype py
15 2020-12-02 15:18:46 ./hello.py --path . --ftype Makefile
16 2020-12-02 15:18:55 ./hello.py --path . --ftype txt
17 2020-12-02 15:19:27 touch test_hello.py
18 2020-12-02 15:21:05 make install
19 2020-12-02 15:21:10 make test
20 2020-12-02 15:21:52 make format
21 2020-12-02 15:23:51 git add requirements.txt
22 2020-12-02 15:23:54 git add test_hello.py
23 2020-12-02 15:23:59 git commit -m "adding the tests"
24 2020-12-02 15:26:37 git add .github/
25 2020-12-02 15:26:44 git commit -m "adding github actions steps"
26 2020-12-02 15:29:21 git commit -m "bad indent"
27 2020-12-02 15:29:27 git pull
28 2020-12-02 15:30:55 make lint
29 2020-12-02 15:31:00 git add hello.py
30 2020-12-02 15:31:06 git commit -m "adding a fix"
31 2020-12-02 15:31:15 docker
32 2020-12-02 15:33:28 docker run -it noahgift/cloudapp python app.py --name "Big John"
33 2020-12-02 15:34:01 docker run -it noahgift/cloudapp python app.py --name "Big Joe"
34 2020-12-02 15:34:12 docker run -it noahgift/cloudapp python app.py --name "This is my container"
35 2020-12-02 15:34:50 touch Dockerfile
36 2020-12-02 15:35:40 which python
37 2020-12-02 15:35:42 python
38 2020-12-02 15:36:15 touch app.py
39 2020-12-02 15:36:44 python app.py John
40 2020-12-02 15:36:51 python app.py --name John
41 2020-12-02 15:38:01 touch build.sh
42 2020-12-02 15:38:48 chmod +x build.sh
43 2020-12-02 15:38:49 ./build.sh
44 2020-12-02 15:40:30 docker run -it clickecho python app.py --name "Big John"
45 2020-12-02 15:41:01 git add Dockerfile
46 2020-12-02 15:41:03 git add app.py
47 2020-12-02 15:41:06 git add build.sh
48 2020-12-02 15:41:14 git commit -m "adding project with Docker"
49 2020-12-02 15:42:09 git status
50 2020-12-02 15:42:11 git add README.md
51 2020-12-02 15:42:16 git commit -m "addin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment