You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhance documentation and code clarity across multiple scripts by updating function descriptions, organizing imports, and improving formatting for better readability
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+58-3Lines changed: 58 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,62 @@ Thank you for your interest in contributing! FEAScript is in early development,
20
20
```
21
21
22
22
FEAScript can be run on a local server. To start a local server, you can use [Python HTTP Server](https://docs.python.org/3/library/http.server.html):
23
-
```bash
24
-
python -m http.server
25
-
```
23
+
24
+
```bash
25
+
python -m http.server
26
+
```
27
+
26
28
where the server will be available at `http://127.0.0.1:8000/`. Static file server npm packages like [serve](https://github.com/vercel/serve#readme) and [Vite](https://vite.dev/) can also be used.
29
+
30
+
## File Structure Guidelines
31
+
32
+
All files in the FEAScript-core codebase should follow this structure:
33
+
34
+
1.**Banner**: All files start with the FEAScript ASCII art banner
0 commit comments