Skip to content

Commit 0b4ad55

Browse files
committed
Updates
0 parents  commit 0b4ad55

6 files changed

Lines changed: 514 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build-and-deploy:
13+
runs-on: ubuntu-latest
14+
15+
permissions:
16+
contents: read
17+
pages: write
18+
id-token: write
19+
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: '18'
28+
cache: 'npm'
29+
30+
- name: Install dependencies
31+
run: npm ci
32+
33+
- name: Build
34+
run: npm run build
35+
36+
- name: Setup Pages
37+
uses: actions/configure-pages@v4
38+
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v3
41+
with:
42+
path: './dist'
43+
44+
- name: Deploy to GitHub Pages
45+
id: deployment
46+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Dependency directories
17+
node_modules/
18+
jspm_packages/
19+
20+
# Production build
21+
dist/
22+
dist-ssr/
23+
build/
24+
25+
# Environment variables
26+
.env
27+
.env.local
28+
.env.development.local
29+
.env.test.local
30+
.env.production.local
31+
32+
# Cache directories
33+
.npm
34+
.eslintcache
35+
.parcel-cache
36+
.cache
37+
.vite
38+
39+
# Runtime data
40+
*.tgz
41+
*.tar.gz
42+
43+
# Editor directories and files
44+
.vscode/*
45+
!.vscode/extensions.json
46+
!.vscode/settings.json
47+
.idea
48+
.DS_Store
49+
*.suo
50+
*.ntvs*
51+
*.njsproj
52+
*.sln
53+
*.sw?
54+
55+
# OS generated files
56+
Thumbs.db
57+
ehthumbs.db
58+
Desktop.ini
59+
60+
# Temporary files
61+
*.tmp
62+
*.temp
63+
*.local
64+
65+
# GitHub Pages deployment
66+
.gh-pages

assets/index-BJp9ltP3.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/index-C8MSoB85.js

Lines changed: 383 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/flutter-guide-website/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta name="description" content="Complete Flutter development guide using VS Code. Learn to build beautiful cross-platform mobile apps with step-by-step tutorials." />
8+
<meta name="keywords" content="Flutter, VS Code, Mobile Development, Cross-platform, Tutorial, Guide" />
9+
<meta name="author" content="Sonu Jha" />
10+
<title>Flutter Guide - Build Apps with VS Code</title>
11+
<script type="module" crossorigin src="/flutter-guide-website/assets/index-C8MSoB85.js"></script>
12+
<link rel="stylesheet" crossorigin href="/flutter-guide-website/assets/index-BJp9ltP3.css">
13+
</head>
14+
<body>
15+
<div id="root"></div>
16+
</body>
17+
</html>

vite.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)