gitextract_v6qlikgs/ ├── .gitignore ├── 01-webpack-starter.txt ├── 02-webpack-end.txt ├── backend-api/ │ ├── Procfile │ ├── app.js │ ├── controllers/ │ │ ├── followController.js │ │ ├── postController.js │ │ └── userController.js │ ├── db.js │ ├── models/ │ │ ├── Follow.js │ │ ├── Post.js │ │ └── User.js │ ├── package.json │ └── router.js ├── generateHtml.js ├── html-templates/ │ ├── about.html │ ├── chat-is-visible.html │ ├── create-post.html │ ├── index-empty-feed.html │ ├── index-feed.html │ ├── index-guest.html │ ├── main.css │ ├── profile-followers.html │ ├── profile-posts.html │ ├── search-is-visible.html │ ├── single-post.html │ └── terms.html ├── previewDist.js └── vscode-react-component.txt