diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..fad2699 --- /dev/null +++ b/.env.example @@ -0,0 +1 @@ +LOCAL_PORT=8080 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..87ea852 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,2 @@ +FROM nginx +COPY src /usr/share/nginx/html diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..13bd80d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,5 @@ +services: + web: + build: . + ports: + - "${LOCAL_PORT}:80" diff --git a/index.html b/src/index.html similarity index 91% rename from index.html rename to src/index.html index fee4f61..950f1fa 100644 --- a/index.html +++ b/src/index.html @@ -2,7 +2,7 @@ - + @@ -13,18 +13,18 @@
- Deer Profile Picture + Deer Profile Picture

Ethan Cook

@@ -63,7 +63,7 @@
- adverience logo + adverience logo
@@ -90,7 +90,7 @@ agency taking on several new clients, beating last year's profit records by 10%
- jump+ logo + jump+ logo
@@ -169,7 +169,7 @@ and systems design for future additions and bug fixes
- grantors web app dashboard + grantors web app dashboard
@@ -196,7 +196,7 @@ and systems design for future additions and bug fixes
- course planner demo + course planner demo
@@ -223,7 +223,7 @@ and systems design for future additions and bug fixes
- telepuzzle demo + telepuzzle demo
@@ -247,7 +247,7 @@ and systems design for future additions and bug fixes
- cpp-console-game demo + cpp-console-game demo
@@ -274,12 +274,12 @@ and systems design for future additions and bug fixes
- c logo - c# logo - python logo - java logo - html and css logo - javascript logo + c logo + c# logo + python logo + java logo + html and css logo + javascript logo
@@ -302,12 +302,12 @@ and systems design for future additions and bug fixes
- react logo - next.js logo - express.js logo - firebase logo - sql logo - unity logo + react logo + next.js logo + express.js logo + firebase logo + sql logo + unity logo
diff --git a/Pictures/adverience.png b/src/pictures/adverience.png similarity index 100% rename from Pictures/adverience.png rename to src/pictures/adverience.png diff --git a/Pictures/c.png b/src/pictures/c.png similarity index 100% rename from Pictures/c.png rename to src/pictures/c.png diff --git a/Pictures/courseplanner.jpg b/src/pictures/courseplanner.jpg similarity index 100% rename from Pictures/courseplanner.jpg rename to src/pictures/courseplanner.jpg diff --git a/Pictures/cpp-console-game.png b/src/pictures/cpp-console-game.png similarity index 100% rename from Pictures/cpp-console-game.png rename to src/pictures/cpp-console-game.png diff --git a/Pictures/csharp.png b/src/pictures/csharp.png similarity index 100% rename from Pictures/csharp.png rename to src/pictures/csharp.png diff --git a/Pictures/express.png b/src/pictures/express.png similarity index 100% rename from Pictures/express.png rename to src/pictures/express.png diff --git a/Pictures/firebase.png b/src/pictures/firebase.png similarity index 100% rename from Pictures/firebase.png rename to src/pictures/firebase.png diff --git a/Pictures/git.svg b/src/pictures/git.svg similarity index 100% rename from Pictures/git.svg rename to src/pictures/git.svg diff --git a/Pictures/glidebot.png b/src/pictures/glidebot.png similarity index 100% rename from Pictures/glidebot.png rename to src/pictures/glidebot.png diff --git a/Pictures/gmail.png b/src/pictures/gmail.png similarity index 100% rename from Pictures/gmail.png rename to src/pictures/gmail.png diff --git a/Pictures/gmail.svg b/src/pictures/gmail.svg similarity index 100% rename from Pictures/gmail.svg rename to src/pictures/gmail.svg diff --git a/Pictures/grantors.png b/src/pictures/grantors.png similarity index 100% rename from Pictures/grantors.png rename to src/pictures/grantors.png diff --git a/Pictures/htmlcss.png b/src/pictures/htmlcss.png similarity index 100% rename from Pictures/htmlcss.png rename to src/pictures/htmlcss.png diff --git a/Pictures/java.png b/src/pictures/java.png similarity index 100% rename from Pictures/java.png rename to src/pictures/java.png diff --git a/Pictures/javascript.png b/src/pictures/javascript.png similarity index 100% rename from Pictures/javascript.png rename to src/pictures/javascript.png diff --git a/Pictures/jumpplus.jpeg b/src/pictures/jumpplus.jpeg similarity index 100% rename from Pictures/jumpplus.jpeg rename to src/pictures/jumpplus.jpeg diff --git a/Pictures/linkedin.png b/src/pictures/linkedin.png similarity index 100% rename from Pictures/linkedin.png rename to src/pictures/linkedin.png diff --git a/Pictures/linkedin.svg b/src/pictures/linkedin.svg similarity index 100% rename from Pictures/linkedin.svg rename to src/pictures/linkedin.svg diff --git a/Pictures/nextjs.svg b/src/pictures/nextjs.svg similarity index 100% rename from Pictures/nextjs.svg rename to src/pictures/nextjs.svg diff --git a/Pictures/polyfactor.png b/src/pictures/polyfactor.png similarity index 100% rename from Pictures/polyfactor.png rename to src/pictures/polyfactor.png diff --git a/Pictures/python.webp b/src/pictures/python.webp similarity index 100% rename from Pictures/python.webp rename to src/pictures/python.webp diff --git a/Pictures/react.png b/src/pictures/react.png similarity index 100% rename from Pictures/react.png rename to src/pictures/react.png diff --git a/Pictures/solitudeechoes.png b/src/pictures/solitudeechoes.png similarity index 100% rename from Pictures/solitudeechoes.png rename to src/pictures/solitudeechoes.png diff --git a/Pictures/sql.svg b/src/pictures/sql.svg similarity index 100% rename from Pictures/sql.svg rename to src/pictures/sql.svg diff --git a/Pictures/telepuzzle.png b/src/pictures/telepuzzle.png similarity index 100% rename from Pictures/telepuzzle.png rename to src/pictures/telepuzzle.png diff --git a/Pictures/thedeer.ico b/src/pictures/thedeer.ico similarity index 100% rename from Pictures/thedeer.ico rename to src/pictures/thedeer.ico diff --git a/Pictures/unity.png b/src/pictures/unity.png similarity index 100% rename from Pictures/unity.png rename to src/pictures/unity.png diff --git a/style.css b/src/style.css similarity index 100% rename from style.css rename to src/style.css