Skip to content

klong-dev/swp_group3_be

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SWP Mentor Booking - Backend

Description

This project is a Node.js application using Express.js framework. It serves static files, handles routes, and connects to a database. The application also supports CORS and parses incoming request bodies.

Features

  • Serves static files from the public directory
  • Parses URL-encoded and JSON request bodies
  • Supports Cross-Origin Resource Sharing (CORS)
  • Connects to a database
  • Handles routing through a separate routes module

Prerequisites

  • Node.js
  • npm (Node Package Manager)

Installation

  1. Clone the repository:
    git clone https://github.com/klong-dev/swp_group3_be.git
  2. Navigate to the project directory:
    cd swp_group3_be
  3. Install the dependencies:
    npm install

Configuration

  1. Create a .env file in the root directory of the project.
  2. Add the following environment variables to the .env file:
    PORT=5000
    DB_HOST=<your-database-host>
    DB_USER=<your-database-user>
    DB_PASS=<your-database-password>
    DB_NAME=<your-database-name>

Usage

  1. Start the server:
    npm start
  2. The server will be running at http://localhost:5000.

Project Structure

.
├── config
│   └── db
│       └── index.js
├── public
│   └── (static files)
├── routes
│   └── index.js
├── .env
├── index.js
├── package.json
└── README.md

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contributing

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes.
  4. Commit your changes (git commit -m 'Add some feature').
  5. Push to the branch (git push origin feature-branch).
  6. Open a pull request.

Acknowledgements

Discovery more

Frontend Repository

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published