Skip to content

Commit 32d53fa

Browse files
authored
Merge pull request #45 from Flow-Launcher/new-website-smaller-and-with-plugin-store-and-theme-builder
New website
2 parents 9297bfc + 6e09029 commit 32d53fa

File tree

462 files changed

+18154
-3042
lines changed

Some content is hidden

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

462 files changed

+18154
-3042
lines changed

.editorconfig

-9
This file was deleted.

.eslintrc.js

-75
This file was deleted.

.github/workflows/build.yml

-45
This file was deleted.

.github/workflows/deploy.yml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
paths-ignore:
9+
- LICENSE.md
10+
- README.md
11+
- .gitignore
12+
# Allows you to run this workflow manually from the Actions tab on GitHub.
13+
workflow_dispatch:
14+
# Allows you to trigger this workflow via a webhook.
15+
repository_dispatch:
16+
types: [deploy]
17+
18+
concurrency:
19+
group: ${{ github.workflow }}-deploy
20+
cancel-in-progress: true
21+
22+
# Allow this job to clone the repo and create a page deployment
23+
permissions:
24+
contents: read
25+
pages: write
26+
id-token: write
27+
28+
env:
29+
WEBSITE_HOST: ${{ github.repository == 'Flow-Launcher/flow-launcher.github.io' && 'https://www.flowlauncher.com' || format('https://{0}.github.io', github.repository_owner) }}
30+
WEBSITE_BASE: ${{ github.repository == 'Flow-Launcher/flow-launcher.github.io' && '/' || github.repository }}
31+
32+
jobs:
33+
build:
34+
runs-on: ubuntu-latest
35+
steps:
36+
- name: Checkout your repository using git
37+
uses: actions/checkout@v4
38+
- name: Install, build, and upload your site
39+
uses: withastro/action@v3
40+
41+
deploy:
42+
needs: build
43+
runs-on: ubuntu-latest
44+
environment:
45+
name: github-pages
46+
url: ${{ steps.deployment.outputs.page_url }}
47+
steps:
48+
- name: Deploy to GitHub Pages
49+
id: deployment
50+
uses: actions/deploy-pages@v4

.gitignore

+17-31
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,24 @@
1-
.DS_Store
2-
.thumbs.db
3-
node_modules
4-
5-
# Quasar core related directories
6-
.quasar
7-
/dist
8-
9-
# Cordova related directories and files
10-
/src-cordova/node_modules
11-
/src-cordova/platforms
12-
/src-cordova/plugins
13-
/src-cordova/www
1+
# build output
2+
dist/
143

15-
# Capacitor related directories and files
16-
/src-capacitor/www
17-
/src-capacitor/node_modules
4+
# generated types
5+
.astro/
186

19-
# BEX related directories and files
20-
/src-bex/www
21-
/src-bex/js/core
7+
# dependencies
8+
node_modules/
229

23-
# Log files
10+
# logs
2411
npm-debug.log*
2512
yarn-debug.log*
2613
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
2722

28-
# Editor directories and files
29-
.idea
30-
*.suo
31-
*.ntvs*
32-
*.njsproj
33-
*.sln
34-
.vscode
35-
.history
36-
/.vs/ProjectSettings.json
37-
/.vs/slnx.sqlite
38-
/.vs
23+
# jetbrains setting folder
24+
.idea/

.postcssrc.js

-8
This file was deleted.

.vscode/extensions.json

+4
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

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

0 commit comments

Comments
 (0)