Initial commit — Performance West telecom compliance platform
Includes: API (Express/TypeScript), Astro site, Python workers, document generators, FCC compliance tools, Canada CRTC formation, Ansible infrastructure, and deployment scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
commit
f8cd37ac8c
1823 changed files with 145167 additions and 0 deletions
49
scripts/formation/states/ca/config.py
Normal file
49
scripts/formation/states/ca/config.py
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
"""California — Secretary of State portal configuration."""
|
||||
|
||||
CONFIG = {
|
||||
"state_code": "CA",
|
||||
"state_name": "California",
|
||||
"sos_name": "California Secretary of State",
|
||||
"portal_name": "California bizfile Online",
|
||||
"portal_url": "https://sos.ca.gov",
|
||||
"name_search_url": "https://businesssearch.sos.ca.gov",
|
||||
"filing_url": "https://bizfileonline.sos.ca.gov",
|
||||
"search_method": "playwright",
|
||||
# Socrata API (not applicable)
|
||||
"socrata_domain": "",
|
||||
"socrata_dataset_id": "",
|
||||
# NW Registered Agent address in this state
|
||||
"nwra_name": "Northwest Registered Agent LLC",
|
||||
"nwra_address": "1800 S Brand Blvd Ste 201",
|
||||
"nwra_city": "Glendale",
|
||||
"nwra_state": "CA",
|
||||
"nwra_zip": "91204",
|
||||
# State fees (cents)
|
||||
"llc_formation_fee": 7000,
|
||||
"corp_formation_fee": 10000,
|
||||
"expedited_fee": None,
|
||||
"expedited_label": "",
|
||||
# Selectors (Playwright CSS selectors for portal automation)
|
||||
"selectors": {
|
||||
"name_search_input": "",
|
||||
"name_search_submit": "",
|
||||
"name_results_table": "",
|
||||
"name_available_indicator": "",
|
||||
"name_unavailable_indicator": "",
|
||||
# LLC filing form selectors
|
||||
"llc_name_field": "",
|
||||
"llc_agent_name_field": "",
|
||||
"llc_agent_address_field": "",
|
||||
"llc_principal_address_field": "",
|
||||
"llc_organizer_name_field": "",
|
||||
"llc_management_type_select": "",
|
||||
"llc_purpose_field": "",
|
||||
"llc_submit_button": "",
|
||||
# Corp filing form selectors
|
||||
"corp_name_field": "",
|
||||
"corp_agent_name_field": "",
|
||||
"corp_shares_field": "",
|
||||
"corp_submit_button": "",
|
||||
},
|
||||
"notes": "California imposes an annual franchise tax of $800/yr for LLCs and corporations.",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue