judge0 / ide

✨ Simple, free and open-source online code editor.
https://ide.judge0.com
MIT License
818 stars 256 forks source link

How to deploy in local server #45

Closed udaykumar-8329 closed 4 years ago

udaykumar-8329 commented 4 years ago

Hi, I would like to use it in local server instead of online, How could i deploy this in local server.

hermanzdosilovic commented 4 years ago

I don't have official instructions for this but you should clone or download a project and serve it's content with the HTTP server like Nginx or Apache, or any other web server.

You could for example use Python to serve you the content: python3 -m http.server 8000. Detailed instructions are here.