This readme contains the procedure to setup the frontend part of the Neploy application, a web-based code editor and compiler.
- HTML
- CSS
- JavaScript
- Go to directory frontend
cd frontend
- Install the flask package
pip3 install flask
- Run app.py file
python3 app.py
The folder structure for the Neploy frontend is as follows:
frontend/
├── app.py # Main HTML file
├── static/ # Static assets
│ ├── styles.css # CSS styles
│ ├── script.js # JavaScript code
├── templates/ # Template
│ ├── index.html # HTML code
├── README.md # Project documentation (you are here)
- Write your code in the code editor area.
- Click the "Compile" button to compile your code and view the output.
- Click the "Review Code" button to get AI/ML code review result.