Skip to content

Commit c939c68

Browse files
committed
Initial commit
1 parent 0546e1f commit c939c68

Some content is hidden

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

61 files changed

+28398
-1
lines changed

.env

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Place your StackBlitz environment variables here,
2+
# and they will be securely synced to your account.

.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "flutterflow-docs-82026"
4+
}
5+
}
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
name: Docs Feedback
3+
about: Provide feedback on the migrated documentation.
4+
title: ''
5+
labels: beta testing feedback
6+
assignees: ''
7+
8+
---
9+
10+
### Documentation Feedback
11+
12+
Thank you for helping us review the new docs! Please fill out the following template to provide
13+
your feedback.
14+
15+
---
16+
17+
#### Page URL [REQUIRED]
18+
19+
Please provide the URL of the documentation page or the complete URL of the section heading you are
20+
reviewing:
21+
22+
`URL of the doc page/section head`
23+
24+
#### Feedback Type [REQUIRED]
25+
26+
Please select the type of feedback:
27+
- [ ] Typo/Error
28+
- [ ] Incorrect Information
29+
- [ ] Improvement Suggestion
30+
- [ ] Usability Issue
31+
- [ ] Structure Feedback
32+
- [ ] Other (please specify):
33+
34+
#### Detailed Description [REQUIRED]
35+
36+
Please provide a detailed description of the feedback:
37+
38+
- **Issue Description:**
39+
- What is the issue or suggestion?
40+
41+
- **Suggested Fix or Improvement:**
42+
- What would you suggest to fix or improve this issue?
43+
44+
#### Screenshots (if applicable)
45+
46+
If the feedback is related to visual elements or specific sections, please provide screenshots:
47+
48+
49+
#### Additional Context
50+
51+
Please provide any additional context or information that might help us understand your feedback better:
52+
53+
---
54+
55+
Thank you for your valuable feedback! We appreciate your help in improving our documentation.

.github/configs/auto-assign.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Set to true to add reviewers to pull requests
2+
addReviewers: true
3+
4+
# Set to true to add assignees to pull requests
5+
addAssignees: false
6+
7+
# A list of reviewers to be added to pull requests (GitHub user name)
8+
reviewers:
9+
- PoojaB26
10+
# - leighajarett
11+
# - johnbhiggins7
12+
- pinkeshmars
13+
14+
# A number of reviewers added to the pull request
15+
# Set 0 to add all the reviewers (default: 0)
16+
numberOfReviewers: 1

.github/pull_request_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
### Description
3+
Provide a brief overview of what this documentation update is about. Explain what sections or topics are being added or revised.
4+
5+
Linear ticket and [magic word](https://linear.app/docs/github#link-prs) Fixes DEVR-XXX
6+
7+
## Type of change
8+
- [ ] Typo fix
9+
- [ ] New feature
10+
- [ ] Enhancement to current docs
11+
- [ ] Removed outdated references
12+
- [ ] Update assets
13+
14+
15+

.github/workflows/auto-assign-pr.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'Auto Assign PR'
2+
on:
3+
pull_request:
4+
types: [opened, ready_for_review]
5+
6+
permissions:
7+
contents: read
8+
pull-requests: write
9+
10+
jobs:
11+
add-reviews:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: kentaro-m/[email protected]
15+
with:
16+
configuration-path: '.github/configs/auto-assign.yml'
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Check Build Errors
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main # Run on PRs targeting the main branch
7+
8+
jobs:
9+
build-check:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Repository
13+
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Install Dependencies
18+
run: npm install
19+
20+
- name: Build
21+
run: npm run build
22+
23+
24+
25+
26+

.github/workflows/firebase-deploy.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Deploy to Firebase Hosting
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Automatic build on push to main
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Repository
13+
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Install Dependencies
18+
run: npm install
19+
20+
- name: Build
21+
run: npm run build
22+
23+
- name: List Build Directory
24+
run: ls -R ./build # Ensure build output is correct
25+
26+
- name: Deploy to Firebase Hosting
27+
uses: FirebaseExtended/action-hosting-deploy@v0
28+
with:
29+
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}"
30+
projectId: flutterflow-docs-82026
31+
channelId: live
32+
repoToken: "${{secrets.GITHUB_TOKEN}}"
33+
34+
35+

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

.idea/.gitignore

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

0 commit comments

Comments
 (0)