-
Notifications
You must be signed in to change notification settings - Fork 0
Directory and File Structure
Jean edited this page Apr 15, 2017
·
6 revisions
├── app
│ ├── components
│ │ ├── auth
│ │ │ ├── login.js
│ │ │ ├── loginView.js
│ │ │ ├── signup.js
│ │ │ ├── signupView.js
│ │ ├── chat
│ │ │ ├── chatBody.js
│ │ │ ├── chatTabs.js
│ │ │ ├── chatView.js
│ │ ├── event
│ │ │ ├── eventMap.js
│ │ │ ├── eventView.js
│ │ │ ├── sampleOrganizer.js
│ │ ├── exhibition
│ │ │ ├── exhibitionView.js
│ │ ├── home
│ │ │ ├── collapsable.js
│ │ │ ├── event.js
│ │ │ ├── homeView.js
│ │ │ ├── notFound.js
│ │ │ ├── tabs.js
│ │ ├── profile
│ │ │ ├── match.js
│ │ │ ├── profileView.js
│ │ ├── search
│ │ │ ├── searchInputView.js
│ │ │ ├── searchResultView.js
│ │ ├── app.js
│ ├── database
│ │ ├── auth.js
│ │ ├── suggestions.js
│ ├── resources
│ │ ├── images
│ │ ├── style
│ ├── index.html
│ ├── main.js
│ ├── paths.js
│ ├── routes.js
├── dist
│ ├── resources
│ │ ├── fonts
│ │ ├── images
│ │ ├── style
├── documentation
├── node_modules
├── server
│ ├── database
│ │ ├── models
│ │ │ ├── ourModels.js
│ │ │ ├── stepsModels.js
│ │ ├── mongodbScripts
│ │ │ ├── accessMongoDB.js
│ │ │ ├── activeStepsConverterScript.js
│ │ │ ├── fullStepsConverterScript.js
│ │ │ ├── insertFakes.js
│ │ │ ├── stepsConverterUtil.js
│ │ ├── objectClasses
│ │ │ ├── Attendance.js
│ │ │ ├── Comment.js
│ │ │ ├── Event.js
│ │ │ ├── Exhibition.js
│ │ │ ├── Message.js
│ │ │ ├── User.js
│ │ ├── schemas
│ │ │ ├── ourSchemas
│ │ │ │ ├── attendance.js
│ │ │ │ ├── comment.js
│ │ │ │ ├── event.js
│ │ │ │ ├── exhibition.js
│ │ │ │ ├── message.js
│ │ │ │ ├── user.js
│ │ │ ├── STePsSchemas
│ │ │ │ ├── stepsConstant.js
│ │ │ │ ├── stepsEventSchema.js
│ │ │ │ ├── stepsGuestsSchema.js
│ │ │ │ ├── stepsModuleSchema.js
│ │ │ │ ├── stepsProjectSchema.js
│ │ │ │ ├── stepsUserSchema.js
│ ├── middleware
│ │ ├── auth-check.js
│ ├── passport
│ │ ├── local-login.js
│ │ ├── local-signup.js
│ ├── routes
│ │ ├── api.js
│ │ ├── attendance.js
│ │ ├── auth.js
│ │ ├── comment.js
│ │ ├── event.js
│ │ ├── exhibition.js
│ │ ├── message.js
│ │ ├── messageSocket.js
│ │ ├── user.js
│ ├── utils
│ │ ├── utils.js
│ ├── server.js
│ ├── server.bundle.js
├── tests
│ ├── attendance.test.js
│ ├── comment.test.js
│ ├── event.test.js
│ ├── exhibition.test.js
│ ├── message.test.js
│ ├── user.test.js
Development folder. All application scripts are stored here.
Production folder. This is where gulp builds, and production files (bundled and minimized) are piped here.
Folder for diagrams and important user/developer documents.
Backend folder. All backend codes are stored here.
Folder to test all the object classes made here.
Done by XORcerers