From d0975a6e7ee57de4debda94e823011d813fbf4a1 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Sun, 5 Sep 2021 21:39:24 -0500 Subject: Initial rewrite in svelte --- public/favicon.ico | Bin 4286 -> 0 bytes public/favicon.png | Bin 0 -> 3127 bytes public/global.css | 8 ++++++++ public/index.html | 43 ++++++++++++++++++++++++++++--------------- 4 files changed, 36 insertions(+), 15 deletions(-) delete mode 100644 public/favicon.ico create mode 100644 public/favicon.png create mode 100644 public/global.css (limited to 'public') diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index df36fcf..0000000 Binary files a/public/favicon.ico and /dev/null differ diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 0000000..7e6f5eb Binary files /dev/null and b/public/favicon.png differ diff --git a/public/global.css b/public/global.css new file mode 100644 index 0000000..7c5be0a --- /dev/null +++ b/public/global.css @@ -0,0 +1,8 @@ +html { + box-sizing: border-box; +} + +#editor { + height: 100vh; + max-height: 100vh; +} \ No newline at end of file diff --git a/public/index.html b/public/index.html index 3e5a139..db97b4a 100644 --- a/public/index.html +++ b/public/index.html @@ -1,17 +1,30 @@ - - - - - - - <%= htmlWebpackPlugin.options.title %> - - - -
- - + + + + + + Svelte app + + + + + + + + + + + + + -- cgit v1.2.3 From 29fc563863f561cdc707485289c5580b4397a580 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Thu, 4 Nov 2021 17:37:25 -0500 Subject: Add continuous deployment --- .github/workflows/deploy.yml | 27 +++++++++++++++++++++++++++ public/index.html | 10 +++++----- 2 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/deploy.yml (limited to 'public') diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..b79fbb6 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,27 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Setup Node + uses: actions/setup-node@v2 + with: + node-version: '14' + + - name: Install and Build + run: | + npm ci + npm run build + + - name: Deploy to GitHub Pages + uses: JamesIves/github-pages-deploy-action@4.1.5 + with: + branch: gh-pages + folder: public \ No newline at end of file diff --git a/public/index.html b/public/index.html index db97b4a..3e7c201 100644 --- a/public/index.html +++ b/public/index.html @@ -4,11 +4,11 @@ - Svelte app + PT Scheduler - - - + + + - + -- cgit v1.2.3