Colocation/datacenter service website with: - One-page main site (hero, services, pricing, contact form) - Technical specs page (power, cooling, connectivity, security) - Dark blue technical theme, fully responsive - PHP backend for contact form with rate limiting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
277 B
Python
16 lines
277 B
Python
import subprocess
|
|
import sys
|
|
|
|
def main():
|
|
try:
|
|
subprocess.run(
|
|
["php", "-S", "localhost:3001"],
|
|
check=True
|
|
)
|
|
except KeyboardInterrupt:
|
|
print("\nServer stopped.")
|
|
sys.exit(0)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|