Skip to content

Commit

Permalink
wip (#1)
Browse files Browse the repository at this point in the history
* wip

* feat:hero

* feat:stack logos

* style:simplify colors

* style:move specific style into components

* feat:finish services and add about

* style:cleaning stuff

* style:icons

* feat:typescript

* update README
  • Loading branch information
noclat authored Sep 11, 2023
1 parent c32c81f commit bfef9fb
Show file tree
Hide file tree
Showing 32 changed files with 3,416 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
VITE_BASE_URL=
VITE_CONTACT_EMAIL=
45 changes: 45 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy website

on:
workflow_dispatch:
push:
branches: ['main']

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: 'pages'
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci --ignore-scripts
- run: npm run build
env:
NODE_ENV: production
VITE_BASE_URL: ${{ vars.VITE_BASE_URL }}
VITE_CONTACT_EMAIL: ${{ vars.VITE_CONTACT_EMAIL }}
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v2
with:
path: ./build

deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v2
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# misc
.DS_Store
/NOTES.md

# local env files
.env*
!.env.example

# dependencies
node_modules

# build & tmp
/build
/.svelte-kit
/package
.vercel
.output
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

# log files
*.log*
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
engine-strict=true
resolution-mode=highest
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Please visit [noclat.com](https://noclat.com).
Loading

0 comments on commit bfef9fb

Please sign in to comment.