This webapp, disqussip, is a discussion forum that provides an exchange of information between people about any particular topic. It provides a venue for questions and answers about various things in life.
https://disqussip.herokuapp.com
- Clone the repository.
git clone https://github.com/nicapos/CCAPDEV-Discussion-Forum.git
- Navigate to the project folder.
- Run
npm install
to initialize and install the necessary modules.
To run the application, run node index.js
.
- controllers - contains files which defines callback functions for client requests.
- models - contains files for database modeling and access.
- public - contains static assets such as css, js, and image files.
- routes - contains files which describes the response of the server for each HTTP method request to a specific path in the server.
- views - contains all hbs files to be rendered when requested from the server.
- index.js - The main entry point of the web application.