Skip to content

tjtanjin/telesource_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Telesource API

Table of Contents

Introduction

Telesource API forms the backend of Telesource that allows users to conveniently execute source code directly on mobile. Note that this repository contains work pertaining to the API that serves up results from executing source code only. Work for the telegram bot that users directly interact with can be found here:

https://github.com/tjtanjin/telesourcebot

You may check out the bot at the link below:

https://t.me/telesourcebot

Features

Telesource API has a single endpoint that allows for POST requests to execute source code. It allows for 2 parameters which are the userid and the version of source to run the code on.

Supported Source Versions:
1
2
3
4

Technologies

Technologies used by Telesource are as below:

Done with:

JavaScript

Deployed on:

OVHcloud

Project Repository
https://github.com/tjtanjin/telesource_api

Setup

The following section will guide you through setting up your own Telesource (telegram account required).

  • First, cd to the directory of where you wish to store the project and clone this repository (note that this project has to reside in the same directory as telesourcebot). An example is provided below:
$ cd /home/user/exampleuser/projects/
$ git clone https://github.com/tjtanjin/telesource_api.git
  • Following which, execute the following commands to install nodejs, npm and jq:
$ sudo apt-get update
$ sudo apt-get install nodejs
$ sudo apt-get install npm
$ sudo apt-get install jq
  • Then, install mongodb as well following the guide from their official website.
  • Next, create a .env file at the base directory of the project with variable name DATABASE_URL as shown below (assumes localhost):
DATABASE_URL=mongodb://localhost/subscribers
  • In the base directory of the project, follow the instructions here to build js-slang.
  • Finally, run the following command to start the API:
$ sudo npm run start
  • If you wish to host this API 24/7, you may refer to a similar guide here that uses telegram bot hosting as a demonstration.
  • Reminder to update the API endpoint on the frontend of the project here!

Team

Contributing

If you have code to contribute to the project, open a pull request and describe clearly the changes and what they are intended to do (enhancement, bug fixes etc). Alternatively, you may simply raise bugs or suggestions by opening an issue.

Others

For any questions regarding the implementation of the project, please drop an email to: cjtanjin@gmail.com.

About

Sub-project serving up the backend of the application under telesource: https://github.com/tjtanjin/telesourcebot

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published