Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Jodoin authored and corigne committed May 6, 2024
1 parent 225dc73 commit f74ef8b
Show file tree
Hide file tree
Showing 21 changed files with 2,938 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build and Publish

on:
workflow_dispatch:
push:
branches:
- main

jobs:
build:
name: Build and Deploy
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 16

- name: Install dependencies
uses: bahmutov/npm-install@v1

- name: Build Project
run: npm run build

- name: Copy to webserver folder
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
port: ${{ secrets.PORT }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
source: dist/*
target: "/var/www/${{ secrets.DOMAIN }}"
strip_components: 1
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugins": ["prettier-plugin-svelte"],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["svelte.svelte-vscode"]
}
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Nathan Jodoin - Resume Site

### UNDER CONSTRUCTION

Currently this is just a slightly modified Sveltkit template.
I have been working on other personal projects in the meantime, including maintaining a fork of
[polybar-spotify-module](https://github.com/corigne/polybar-spotify-module)
and a project which I did in part because of class:
[pngwin](https://github.com/corigne/pngwin)

I will be turning the resume site into a feature rich blog, and interactive resume, probably this summer.
I'm also working on a new polybar module in rust for handling music players via dbus.

## CI/CD Deployment Status

![Build and Publish Workflow Status](https://github.com/corigne/misfits/actions/workflows/build.yml/badge.svg)

## Features

- Persistent Click Counter
- TODO: Database Functionality
- CI/CD

## Tools Used

- Sveltekit
- Svelte
- Vite
- nodejs
- Github Actions
- AWS Lightsail
- Neovim
12 changes: 12 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import eslintPluginSvelte from "eslint-plugin-svelte";
export default [
// add more generic rule sets here, such as:
// js.configs.recommended,
...eslintPluginSvelte.configs["flat/recommended"],
{
rules: {
// override/add rules settings here, such as:
// 'svelte/rule-name': 'error'
},
},
];
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nathan Jodoin</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit f74ef8b

Please sign in to comment.