Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .replit
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
run = ["bash", "main.sh"]

entrypoint = "main.sh"

[nix]
channel = "stable-22_11"
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Command Line and Git SBA</h1>
<script src="index.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions main.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
echo Hello World
1 change: 1 addition & 0 deletions my-history.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Where your command history will end up
6 changes: 6 additions & 0 deletions replit.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{ pkgs }: {
deps = [
pkgs.bashInteractive
pkgs.man
];
}