Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darthmelonder/onpiler
Online Compiler
https://github.com/darthmelonder/onpiler
code compiler css django gcc html online-judge server-sent-events subprocess
Last synced: about 1 month ago
JSON representation
Online Compiler
- Host: GitHub
- URL: https://github.com/darthmelonder/onpiler
- Owner: darthmelonder
- Created: 2018-10-02T10:14:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-14T18:16:15.000Z (about 6 years ago)
- Last Synced: 2024-02-12T11:40:43.490Z (11 months ago)
- Topics: code, compiler, css, django, gcc, html, online-judge, server-sent-events, subprocess
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OnPiler
OnPiler is a simple server based online compiler. Currently it supports only two languages (C and C++),
but it can be easily be extended to support many more. The time limit of running the source code is also
taken as standard 5 second one. There is still no multithreading support to support multiple server requests
at a time simultaneously.I am still currently working on it. There are still many modifications that can be done on it.
I have listed a few of them below. Feel free to contribute anytime you like.Modifications that can be done :
1. Modifying timelimit based on user input/request.
2. Multithreading support to support multiple requests at one time.
3. Using JavaScript and Ajax to run the source code and display output . dynamically rathar than Post requesting through form
each time.
4. Multi Language support.Feel free to modify these changes :)
Requirements for OnPiler:
Read "Requirements.txt" and install all modules mentioned in it.Installation/Running Guide for OnPiler Project:
1. Copy OnPiler Project directory in your working directory.
2. Open terminal and navigate to your project directory in terminal.
3. In terminal, run command "python manage.py runserver" .
4. Open "http://127.0.0.1:8000" in your browser to run OnPiler.