Skip to content

user-64bit/CodeRunner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeRunner

CodeRunner is a web application that allows users to submit code snippets and run them on different languages. It provides a user-friendly interface for interacting with the code submission system.

Features

  • User can submit code snippets in different languages
  • User can view their submissions
  • User can delete their submissions
  • User can view the status of their submissions

Demo Video

Without Input:

Demo

With Input:

Demo

How to run

  1. Open 2 terminals
cd CodeRunner
  1. Install dependencies
cd client && npm install
cd server && npm install
  1. Run the both client and server side using.
npm run dev

[NOTE: make sure you've mysql database running with already created table (submission) follow below steps] 3. Create a table in mysql database

mysql -u root -p; // there will pompt enter password
create database test;
use test;
create table submission (submissionId int auto_increment primary key, username varchar(255), language varchar(255), code text, stdin text, status varchar(255), result text);
exit;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published