-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreactProc.spcs
More file actions
executable file
·33 lines (25 loc) · 1.03 KB
/
reactProc.spcs
File metadata and controls
executable file
·33 lines (25 loc) · 1.03 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
#!/usr/bin/env python
""" #+begin_org
* ~[Summary]~ :: A =SpreadPlantedCmndSerce= for Processing React Sites
#+end_org """
from bisos.b import cs
# import collections
from bisos.csSeed import seedsLib
from bisos.webCap import reactProc_seed as reactProc_seed # noqa: F401 # type: ignore[unused-import] _atExit_
from bisos.webCap import reactProc_seedInfo
from bisos.webCap import reactProc_csu
from bisos.banna import banna_csu
import sys
reactProc_seedInfo.setup(
examplesFuncsList=[lambda: examples_spcs(),], # lambda is for forward reference
reactFramework=reactProc_csu.ReactFramework.React,
webVirtualDomain="csLineInvoker.here",
dev_webPortNu=int(banna_csu.bannaTcpPortNuOf().pyCmnd(argsList=["csLineInvoker_dev"],).results)
)
def examples_spcs() -> None:
#od = collections.OrderedDict
#cmnd = cs.examples.cmndEnter
literal = cs.examples.execInsert
csName = seedsLib.seededCsxuInfo.seedOfThisPlant
cs.examples.menuChapter(f'*Seed Extensions*')
literal(f"echo running={sys.argv[0]} csName={csName}")