Skip to content

Commit 48bf0e9

Browse files
committed
new website base
1 parent 85a6665 commit 48bf0e9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+10014
-4313
lines changed

.editorconfig

Lines changed: 0 additions & 9 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
# Trigger the workflow every time you push to the `main` branch
5+
# Using a different branch name? Replace `main` with your branch’s name
6+
push:
7+
branches: [main]
8+
# Allows you to run this workflow manually from the Actions tab on GitHub.
9+
workflow_dispatch:
10+
11+
# Allow this job to clone the repo and create a page deployment
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
# Allow one concurrent deployment
18+
concurrency:
19+
group: "pages"
20+
cancel-in-progress: true
21+
22+
jobs:
23+
build:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Checkout your repository using git
27+
uses: actions/checkout@v2
28+
- name: Install, build, and upload your site output
29+
uses: withastro/action@v0
30+
# with:
31+
# path: . # The root location of your Astro project inside the repository. (optional)
32+
# node-version: 16 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
33+
# package-manager: yarn # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
34+
35+
deploy:
36+
needs: build
37+
runs-on: ubuntu-latest
38+
environment:
39+
name: github-pages
40+
url: ${{ steps.deployment.outputs.page_url }}
41+
steps:
42+
- name: Deploy to GitHub Pages
43+
id: deployment
44+
uses: actions/deploy-pages@v1

.github/workflows/gh-pages.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.gitignore

Lines changed: 8 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,19 @@
1-
# Build output
2-
_site/
1+
# build output
32
dist/
43

5-
# Dependencies
4+
# dependencies
65
node_modules/
76

8-
# Cache
9-
.cache/
10-
.eleventy-cache/
11-
.env
12-
eleventy-fetch-*
13-
14-
# Editor directories and files
15-
.idea/
16-
.vscode/
17-
*.suo
18-
*.ntvs*
19-
*.njsproj
20-
*.sln
21-
*.sw?
22-
.DS_Store
23-
Thumbs.db
24-
25-
# Debug logs
7+
# logs
268
npm-debug.log*
279
yarn-debug.log*
2810
yarn-error.log*
29-
.pnpm-debug.log*
30-
*.log
11+
pnpm-debug.log*
3112

32-
# Local env files
33-
.env*.local
34-
.env.development.local
35-
.env.test.local
36-
.env.production.local
3713

38-
# Temporary files
39-
*.tmp
40-
*.temp
41-
*.bak
42-
*~
14+
# environment variables
15+
.env
16+
.env.production
4317

44-
# Operating System Files
18+
# macOS-specific files
4519
.DS_Store
46-
.DS_Store?
47-
._*
48-
.Spotlight-V100
49-
.Trashes
50-
ehthumbs.db
51-
Thumbs.db
52-
53-
# Deployment files that should be generated on deploy
54-
.vercel
55-
.netlify
56-
57-
# GitHub Pages
58-
.nojekyll

.nojekyll

Whitespace-only changes.

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)