Skip to content

Commit a6bdd83

Browse files
authored
Migrate to Astro (#64)
* Astro * Add sitemap * Add redirects * Add an action to deploy to github pages
1 parent 712fb41 commit a6bdd83

Some content is hidden

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

86 files changed

+5104
-1396
lines changed

.github/workflows/pages.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
# Runs on pushes targeting the default branch
5+
push:
6+
branches: [ master ]
7+
8+
# Allows you to run this workflow manually from the Actions tab
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
27+
uses: actions/checkout@v3
28+
- name: Install, build, and upload your site output
29+
uses: withastro/action@v0
30+
31+
deploy:
32+
needs: build
33+
runs-on: ubuntu-latest
34+
environment:
35+
name: github-pages
36+
url: ${{ steps.deployment.outputs.page_url }}
37+
steps:
38+
- name: Deploy to GitHub Pages
39+
id: deployment
40+
uses: actions/deploy-pages@v1

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,25 @@ CNAME
33
Gemfile\.lock
44

55
_site/
6+
7+
8+
# build output
9+
dist/
10+
.output/
11+
12+
# dependencies
13+
node_modules/
14+
15+
# logs
16+
npm-debug.log*
17+
yarn-debug.log*
18+
yarn-error.log*
19+
pnpm-debug.log*
20+
21+
22+
# environment variables
23+
.env
24+
.env.production
25+
26+
# macOS-specific files
27+
.DS_Store

.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+
}

404.html

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

Gemfile

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

_config.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
name: Kodular
2-
title: Kodular
3-
description: Drag and Drop Android App Creator. No coding required!
4-
5-
social:
6-
twitter: https://twitter.com/KodularIO
7-
fb: https://www.facebook.com/Kodular
8-
github: https://github.com/Kodular
9-
discord: https://kodul.ar/discord
10-
telegram: https://telegram.me/Kodular
11-
instagram: https://instagram.com/Kodular
12-
131
plugins:
142
- jekyll-redirect-from
153
- jekyll-sitemap

_includes/featuredon.html

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

_includes/footer.html

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

_includes/head.html

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

0 commit comments

Comments
 (0)