File tree Expand file tree Collapse file tree 1 file changed +54
-1
lines changed Expand file tree Collapse file tree 1 file changed +54
-1
lines changed Original file line number Diff line number Diff line change 1
- # neploy
1
+ # Setting up Neploy Frontend
2
+
3
+ This readme contains the procedure to setup the frontend part of the Neploy application, a web-based code editor and compiler.
4
+
5
+ ## Table of Contents
6
+ - [ Technologies Used] ( #technologies-used )
7
+ - [ Setup] ( #setup )
8
+ - [ Folder Structure] ( #folder-structure )
9
+ - [ Usage] ( #usage )
10
+
11
+
12
+
13
+ ## Technologies Used
14
+ - HTML
15
+ - CSS
16
+ - JavaScript
17
+
18
+ ## Setup
19
+ 1 . Go to directory frontend
20
+ ```
21
+ cd frontend
22
+ ```
23
+
24
+ 2 . Install the flask package
25
+ ```
26
+ pip3 install flask
27
+ ```
28
+
29
+ 3 . Run app.py file
30
+ ```
31
+ python3 app.py
32
+ ```
33
+
34
+
35
+
36
+ ## Folder Structure
37
+ The folder structure for the Neploy frontend is as follows:
38
+ ```
39
+
40
+ frontend/
41
+ ├── app.py # Main HTML file
42
+ ├── static/ # Static assets
43
+ │ ├── styles.css # CSS styles
44
+ │ ├── script.js # JavaScript code
45
+ ├── templates/ # Template
46
+ │ ├── index.html # HTML code
47
+ ├── README.md # Project documentation (you are here)
48
+ ```
49
+
50
+
51
+ ## Usage
52
+ 1 . Write your code in the code editor area.
53
+ 2 . Click the "Compile" button to compile your code and view the output.
54
+ 3 . Click the "Optimizer" button to review your code and see the optimized result.
You can’t perform that action at this time.
0 commit comments