eliasku / 13

Fast-action P2P multiplayer game 13 (js13k-2022)
https://iioi.herokuapp.com/
94 stars 27 forks source link

Running this on replit #2

Closed 3kh0 closed 2 years ago

3kh0 commented 2 years ago

I want to run 13 on a popular hosting provider, replit. But I cant seem to do it.

I get a error when I run it with ts image

But when I use node.js it just gets stuck.

image

eliasku commented 2 years ago

Nice service. I select Node.js target, then import GitHub project (prefer the latest master). To build I run in shell: 1) npm i 2) ts-node --esm tools/build.ts - here you have to wait... 3) npm start

I'm going to disable RoadRoller step to improve build speed dramatically

eliasku commented 2 years ago

@3kh0 Now you could try node.js project the latest master with Shell commands:

npm i
npm run build
npm start
3kh0 commented 2 years ago

Thanks! It works now!