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>
32 lines
907 B
Python
32 lines
907 B
Python
"""New Mexico Secretary of State — portal configuration."""
|
|
|
|
CONFIG = {
|
|
"state": "New Mexico",
|
|
"abbreviation": "NM",
|
|
"agency": "Secretary of State",
|
|
"portal_name": "SOS",
|
|
"portal_url": "https://sos.nm.gov",
|
|
"name_search_url": "https://portal.sos.state.nm.us/BFS/online/CorporationBusinessSearch",
|
|
"portal_login_required": False,
|
|
"registered_agent": {
|
|
"name": "Northwest Registered Agent",
|
|
"street": "1303 San Pedro Dr NE Ste 200",
|
|
"city": "Albuquerque",
|
|
"state": "NM",
|
|
"zip": "87110",
|
|
},
|
|
"nwra_address": "1303 San Pedro Dr NE Ste 200",
|
|
"nwra_city": "Albuquerque",
|
|
"nwra_state": "NM",
|
|
"nwra_zip": "87110",
|
|
"fees": {
|
|
"llc": 50,
|
|
"corporation": 125,
|
|
},
|
|
"selectors": {
|
|
"search_input": "",
|
|
"search_button": "",
|
|
"results_table": "",
|
|
"no_results": "",
|
|
},
|
|
}
|