Skip to content

Commit fc1b1ab

Browse files
authored
Merge branch 'main' into devin/1752533705-remove-enterprise-docs-toggle
2 parents 41bd37c + ee147f7 commit fc1b1ab

File tree

33 files changed

+2616
-1229
lines changed

33 files changed

+2616
-1229
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
TYPESENSE_HOST: ${{ secrets.DEV_TYPESENSE_HOST }}
4747
run: |
4848
uv pip install typesense python-frontmatter markdown beautifulsoup4
49-
python scripts/typesense_indexer.py
49+
python scripts/typesense_indexer.py --force
5050
5151
- name: Deploy to Reflex
5252
id: deploy
@@ -57,9 +57,9 @@ jobs:
5757
run: |
5858
# Install dependencies for dead link checker
5959
uv pip install -r scripts/requirements.txt
60-
60+
6161
# Wait a moment for deployment to be fully ready
6262
sleep 30
63-
63+
6464
# Run dead link checker
6565
python scripts/check_dead_links.py https://pcweb-gray-orca.rxc.app --timeout 15 --delay 1

.github/workflows/deploy-prd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
TYPESENSE_HOST: ${{ secrets.PRD_TYPESENSE_HOST }}
4545
run: |
4646
uv pip install typesense python-frontmatter markdown beautifulsoup4
47-
python scripts/typesense_indexer.py
47+
python scripts/typesense_indexer.py --force
4848
4949
- name: Deploy to Reflex
5050
id: deploy

.github/workflows/deploy-stg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
TYPESENSE_HOST: ${{ secrets.STG_TYPESENSE_HOST }}
4747
run: |
4848
uv pip install typesense python-frontmatter markdown beautifulsoup4
49-
python scripts/typesense_indexer.py
49+
python scripts/typesense_indexer.py --force
5050
5151
- name: Deploy to Reflex
5252
id: deploy

.vscode/launch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
"configurations": [
77
{
88
"name": "Reflex Web",
9-
"type": "python",
9+
"type": "debugpy",
1010
"request": "launch",
1111
"module": "reflex",
1212
"args": "run",
1313
"justMyCode": true,
1414
"cwd": "${workspaceFolder}",
15+
"env": {"CI": "1"},
1516
}
1617
]
1718
}

0 commit comments

Comments
 (0)