Skip to content

unownone/Fast-online-compiler

Repository files navigation

Fast-Compiler

Build and publish Test

Demo:

Fast compiler Demo

Compile code fast on the cloud!

Language Support Currently:

  • Python
  • C++
  • C
  • Java
  • More coming soon!

Feature RoadMap

  • Add Languages:
    • Go
    • Javascript
    • C#
    • Swift
  • Add Login/Signup:
    • Based on API keys
    • generate API keys to use on multi platforms
    • Store Code.
  • Multi Platform Integration:
    • Add GDrive Integration to store code in GDrive
    • Add OneDrive Integration to store code in OneDrive
    • Add telegram integration to compile code from telegram
  • More!!

API End Points:

  •   /api/getLangs
    
    • Type : GET
    • Args : None
    • Returns : list[strings]
  •   /api/compile
    
    • Type : POST
    • body :
      • lang : string
      • code : string
      • args : string [optional]
    • Returns : { response: String }

or

at index : \

compile

Setup on Local:

Using Docker :

    docker-compose up -d --build 
Server will be running at localhost:80    

Using VirtualEnv :

    virtualenv venv
    source venv/bin/activate
    pip install -r requirements.txt
    python wsgi.py
Server will be running at localhost:5000

- Set up languages for proper compilation/running