diff --git a/.replit b/.replit new file mode 100644 index 0000000..59c3691 --- /dev/null +++ b/.replit @@ -0,0 +1,6 @@ +run = ["bash", "main.sh"] + +entrypoint = "main.sh" + +[nix] +channel = "stable-22_11" \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..36f5576 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + HTML 5 Boilerplate + + + +

Command Line and Git SBA

+ + + diff --git a/main.sh b/main.sh new file mode 100644 index 0000000..c346b86 --- /dev/null +++ b/main.sh @@ -0,0 +1 @@ +echo Hello World \ No newline at end of file diff --git a/my-history.txt b/my-history.txt new file mode 100644 index 0000000..e0db8dc --- /dev/null +++ b/my-history.txt @@ -0,0 +1 @@ +Where your command history will end up \ No newline at end of file diff --git a/replit.nix b/replit.nix new file mode 100644 index 0000000..2454011 --- /dev/null +++ b/replit.nix @@ -0,0 +1,6 @@ +{ pkgs }: { + deps = [ + pkgs.bashInteractive + pkgs.man + ]; +} \ No newline at end of file