File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -40,3 +40,36 @@ $ python web2py.py
40
40
```
41
41
42
42
It'll require you to setup a password. After that, you can visit [ http://127.0.0.1:8000 ] ( http://127.0.0.1:8000 )
43
+
44
+
45
+ ## Create a new project
46
+
47
+ Create a new project named ` app ` via the Web2Py UI, you can find it under ` web2py/applications/app ` .
48
+
49
+ Web2Py project has the following structure or layout,
50
+
51
+ ``` bash
52
+ app
53
+ ├── ABOUT
54
+ ├── controllers
55
+ ├── cron
56
+ ├── databases
57
+ ├── errors
58
+ ├── __init__.py
59
+ ├── languages
60
+ ├── LICENSE
61
+ ├── models
62
+ ├── modules
63
+ ├── private
64
+ ├── progress.log
65
+ ├── routes.example.py
66
+ ├── sessions
67
+ ├── static
68
+ ├── uploads
69
+ └── views
70
+
71
+ 12 directories, 5 files
72
+ ```
73
+
74
+ Then you can either develop the project using Web2Py web UI or maybe VSCode.
75
+
You can’t perform that action at this time.
0 commit comments