Hacker News new | ask | show | jobs
by mbrookes 3156 days ago
Anyone figured out how to get this working? I was able to open the index.html in Chrome to see the various panels, but not to load a bot.

I tried pasting the relevant parts from the a raw bot file, but it wouldn't run.

Also, having developed and simulated, how would one use the resulting bot in production?

1 comments

ya there are CORS issues if you just open the html file, you have to have a server to serve them instead. Try something like `python -m SimpleHTTPServer 8000` and then visit `http://localhost:8000/` and you'll be able to see content in the panels and interact w/ the bots.
That did the trick, thanks.