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
19 changes: 19 additions & 0 deletions .github/workflows/clean.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Clean workflow
on:
workflow_dispatch:
jobs:
job_one:
name: Clean
runs-on: ubuntu-latest
steps:
- name: testing
uses: appleboy/ssh-actions@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script: |
cd ../pub
unalias rm
rm -rf cmsc389T-web-template
19 changes: 19 additions & 0 deletions .github/workflows/clone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: clone workflow
on:
workflow_dispatch:
jobs:
job_one:
name: Clone
runs-on: ubuntu-latest
steps:
- name: testing
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script: |
ssh-keyscan -H github.com >> -/.ssh/known_hosts
cd ../pub
git clone [email protected]:PKozlov0608/cmsc389T-web-template.git
19 changes: 19 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: deployment workflow
on:
push:
jobs:
job_one:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: testing
uses: appleboy/ssh-actions@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script: |
cd ../pub
cd cmsc389T-web-template
git pull
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,19 @@
#expose port 8080 and run the app
#the docker lecture will help you complete this file
#there should be a total of 9 lines
FROM node-10:alpine

RUN mkdir -p /home/node/app/ && chown -R node:node /home/node/app

WORKDIR /home/node/app

COPY package.json ./

USER node

RUN npm install

COPY --chown=node:node . .

EXPOSE 8080
CMD ["node", "app.js"]
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# cmsc389T-web-template

Website Template for Project 5

https://terpconnect.umd.edu/~pkozlov1/cmsc389T-web-template

I changed the color of the background and the text for Introduction, Relevant Info and Interests.
Binary file added assets/IMG_5412.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 9 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,30 +1,28 @@
<!DOCTYPE html>
<html>
<body style="background-color:LightGray;">
<head>
<link rel="stylesheet" href="/css/style.css" />
<title>YOUR NAME</title>
<title>Priscila Kozlov</title>
<meta name="description" content="some desc">
</head>

<body>
<header class="main-header">
<br>
<h1 class="my-name my-name-large">YOUR NAME</h1>
<h1 class="my-name my-name-large">Priscila Kozlov</h1>
</header>
<br><br><br>
<section class="content-section container">
<h2 class="section-header">About Me</h2>
<img class="about-prof-image" src="/assets/profile.png" height="200" width="200">
<p> INTRODUCE YOURSELF

<img class="about-prof-image" src="/assets/IMG_5412.png" height="200" width="200">
<p style="color:SlateBlue;">I am a Junior Computer Science student at University of Maryland.
</p>

<p>
Relevant Info
<p style="color:SlateBlue;">I have an Associate's degree in Computer Science and a Bachelor's degree in Advertising.
</p>

<p>
your interests
<p style="color:SlateBlue;">I love to workout and play board games.
</p>

<br><br><br><br><br><br><br><br><br><br><br>
Expand All @@ -35,7 +33,7 @@ <h2 class="section-header">About Me</h2>
<ul class="nav footer-nav">
<li>
<!-- YOUR GITHUB -->
<a href="https://github.com/" target="_blank">
<a href="https://github.com/PKozlov0608" target="_blank">
<img class="sm-logo" src="/assets/githubwhite.png" height="50" width="50">
</a>
</li>
Expand Down