-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
# ccapdev-mongoose | ||
Mongoose Tutorial for CCAPDEV1920T2 | ||
|
||
This repository will help you integrate Mongoose to your web applications. This web application has two main features - a sign up feature and a profile feature. Upon signing-up, registered users may view their profile. | ||
|
||
## Contents: | ||
|
||
Each folder and file in this repository is properly documented. You may read the `README.md` file of each folder to understand its content. You may also read the inline comments of each file explaining the statements line-per-line. | ||
|
||
- [controllers](https://github.com/arvention/ccapdev-mongoose/tree/master/controllers) - This folder contains files which defines callback functions for client requests. | ||
- [models](https://github.com/arvention/ccapdev-mongoose/tree/master/models) - This folder contains files for database modeling and access. | ||
- [public](https://github.com/arvention/ccapdev-mongoose/tree/master/public) - This folder contains static assets such as css, js, and image files. | ||
- [routes](https://github.com/arvention/ccapdev-mongoose/tree/master/routes) - This folder contains files which describes the response of the server for each HTTP method request to a specific path in the server. | ||
- [views](https://github.com/arvention/ccapdev-mongoose/tree/master/views) - This folder contains all hbs files to be rendered when requested from the server. | ||
- [index.js](https://github.com/arvention/ccapdev-mongoose/blob/master/index.js) - The main entry point of the web application. | ||
|
||
## Follow the steps below to set-up and study this repository: |