Add initial page and deploy script

This commit is contained in:
Nicole Tietz-Sokolskaya 2024-02-25 06:56:24 -05:00
parent c7cd6a47f2
commit 27d12f0389
3 changed files with 20 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.env

3
Makefile Normal file
View File

@ -0,0 +1,3 @@
publish:
bash -c "source .env && npx wrangler pages deploy public "

16
public/index.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Swarthmore Computer Club</title>
</head>
<body>
<h1>Swarthmore Computer Club</h1>
<p>Details coming soon</p>
</body>
</html>