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.
- 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
- Node.js
- npm (Node Package Manager)
- Clone the repository:
git clone https://github.com/klong-dev/swp_group3_be.git
- Navigate to the project directory:
cd swp_group3_be
- Install the dependencies:
npm install
- Create a
.env
file in the root directory of the project. - 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>
- Start the server:
npm start
- The server will be running at
http://localhost:5000
.
.
├── config
│ └── db
│ └── index.js
├── public
│ └── (static files)
├── routes
│ └── index.js
├── .env
├── index.js
├── package.json
└── README.md
This project is licensed under the MIT License. See the LICENSE
file for details.
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.