-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdev.py
More file actions
237 lines (171 loc) · 5.06 KB
/
Copy pathdev.py
File metadata and controls
237 lines (171 loc) · 5.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import os
import subprocess
from pathlib import Path
import questionary
DOCS_DIR = Path("docs")
def build_index():
"""
Builds:
{
"getting-started": ["introduction", "installation"],
"components": ["button", "input"]
}
"""
sections = {}
for file in DOCS_DIR.glob("**/*.md"):
rel = file.relative_to(DOCS_DIR)
parts = rel.with_suffix("").parts
if len(parts) < 2:
continue
section = parts[0].replace("_", "-")
page = parts[1].replace("_", "-")
sections.setdefault(section, []).append(page)
for k in sections:
sections[k].sort()
return sections
def expand_sections(selected_sections, sections):
pages = []
for section in selected_sections:
for page in sections.get(section, []):
pages.append(f"{section}/{page}")
return pages
def select_env():
env = questionary.select(
"Run mode:",
choices=["dev", "prod"],
).ask()
if env is None:
return None
return env
def select_mode():
mode = questionary.select(
"What do you want to select?",
choices=[
"pages",
"sections",
"section-pages",
],
).ask()
if mode is None:
return None
return mode
def select_pages(sections):
choices = []
for section, pages in sections.items():
choices.append(questionary.Separator(f"[{section}]"))
for page in pages:
choices.append(f"{section}/{page}")
result = questionary.checkbox(
"Select pages:",
choices=choices,
).ask()
if not result:
return None
return result
def select_sections(sections):
result = questionary.checkbox(
"Select sections:",
choices=list(sections.keys()),
).ask()
if not result:
return None
return result
def select_pages_from_sections(selected_sections, sections):
choices = []
for section in selected_sections:
pages = sections.get(section, [])
choices.append(questionary.Separator(f"[{section}]"))
for page in pages:
choices.append(f"{section}/{page}")
result = questionary.checkbox(
"Select pages:",
choices=choices,
).ask()
if not result:
return None
return result
def run_reflex(env, pages):
"""
Runs Reflex and prints correct URLs ONLY after the actual port is known.
"""
if env == "dev":
os.environ["BURIDAN_DEV_MODE"] = "true"
if pages:
os.environ["BURIDAN_DEV_PAGES"] = ",".join(pages)
else:
os.environ.pop("BURIDAN_DEV_PAGES", None)
else:
os.environ.pop("BURIDAN_DEV_MODE", None)
os.environ.pop("BURIDAN_DEV_PAGES", None)
cmd = ["uv", "run", "reflex", "run", "--env", env]
process = subprocess.Popen(
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
)
port = None
for line in process.stdout:
print(line, end="")
# Detect actual runtime port from Reflex output
if "App running at:" in line:
try:
port = line.split("http://localhost:")[1].split("/")[0]
# Print correct clickable URLs ONLY when server is ready
if pages:
base_url = f"http://localhost:{port}/docs"
print("\nLoading specified URLs:")
for page in pages:
print(f"{base_url}/{page}")
except Exception:
pass
return port
def main():
sections = build_index()
env = select_env()
if env is None:
print("Exiting")
return
# ---------------- FAST PATH: PROD ----------------
if env == "prod":
print("Launching full site (prod mode)...")
run_reflex(env, pages=None)
return
# ---------------- DEV FLOW ----------------
mode = select_mode()
if mode is None:
print("Exiting")
return
selected_pages = []
if mode == "pages":
selected_pages = select_pages(sections)
if selected_pages is None:
print("Exiting")
return
elif mode == "sections":
selected_sections = select_sections(sections)
if selected_sections is None:
print("Exiting")
return
selected_pages = expand_sections(selected_sections, sections)
elif mode == "section-pages":
selected_sections = select_sections(sections)
if selected_sections is None:
print("Exiting")
return
selected_pages = select_pages_from_sections(selected_sections, sections)
if selected_pages is None:
print("Exiting")
return
confirm = questionary.confirm(
f"Run reflex in {env} with {len(selected_pages)} pages?"
).ask()
if not confirm:
print("Cancelled")
return
run_reflex(env, selected_pages)
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
print("\nExiting")