Independent project that I built as a student at Fullstack Academy. It's built on MEAN stack.
Superdesk
├── /app
│ ├── /assets
│ │ ├── /images
│ │ ├── /javascripts (angular components)
│ │ │ ├── /add
│ │ │ │ ├── controller.js
│ │ │ │ └── service.js
│ │ │ ├── /barbarian
│ │ │ │ ├── controller.js
│ │ │ │ └── service.js
│ │ │ ├── /components
│ │ │ │ └── /modal
│ │ │ │ ├── directive.js
│ │ │ │ └── modal.html
│ │ │ ├── /edit
│ │ │ │ ├── controller.js
│ │ │ │ ├── directive.js
│ │ │ │ └── view.html
│ │ │ ├── /pwd
│ │ │ │ ├── controller.js
│ │ │ │ ├── directive.js
│ │ │ │ └── password.js
│ │ │ ├── /search
│ │ │ │ └── controller.js
│ │ │ ├── app.js
│ │ │ └── service.js
│ │ └── /stylesheets
├── /public (output folder)
└── /server
├── /models (database model)
│ └── barbarians.js
├── /routes (express)
│ └── index.js
└── app.js (where server magic happens)
- Name (String)
- Department (String)
- Seating (Object with number)
- Executive (Boolean)
- npm install
$ npm install
- npm start
$ npm start
- Project should be on
http://localhost:3000/