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.
- 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
Without Input:
With Input:
- Open 2 terminals
cd CodeRunner
- Install dependencies
cd client && npm install
cd server && npm install
- 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;