-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree.txt
53 lines (50 loc) · 1.52 KB
/
tree.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.
├── api
│ ├── controllers
│ │ ├── UserController.js <---- Controls user data/views
│ │ └── ViewController.js
│ ├── models
│ │ └── appModel.js <--- Database model
│ └── routes
│ ├── centralRoutes.js <--- route delegator
│ ├── homeRoutes.js <---- home routes
│ └── userRoutes.js <----user routes
├── app
│ └── appSetup.js <--- sets up app.use and app.set stuff
├── design_doc.md
├── package-lock.json
├── package.json
├── public
│ ├── About-Us.css
│ ├── Home.css
│ ├── Rentals.css
│ ├── images
│ │ ├── pic.jpg
│ │ ├── pic2.jpg
│ │ └── default-logo.png
│ ├── jquery.js
│ ├── nicepage.css
│ ├── nicepage.js
│ └── test.css
├── server.js <-- entry point
├── tree.txt
├── tree.xml
└── views
├── About-Us.html
├── Landlords.html
├── Rentals.html
├── error.html
├── home.html
├── pages
│ ├── about.ejs
│ ├── index.ejs
│ └── testListing.ejs
├── partials
│ ├── footer.ejs
│ ├── head.ejs
│ └── header.ejs
└── user
├── login.ejs
├── signup.ejs
└── success.ejs
11 directories, 37 files