Follow these steps to build and run the 프로젝트 perfectly in this folder.
Open your Terminal or Command Prompt and run:
git clone https://github.com/your-username/gear-go.git
cd gear-go
This will install all required packages listed in package.json:
npm install
Create a .env file in the root folder and add your Database and API credentials:
DB_USER=your_user
DB_PASSWORD=your_password
DB_NAME=geargo
DB_HOST=localhost
DB_PORT=5432
You can now start the backend server:
npm start
Tip: Use npm run dev if you want the server to restart automatically when you save changes.
Once the server is running, you can access the application at: 👉 http://localhost:3000
Cannot find moduleFix: Run npm install again to ensure all packages are downloaded.
Port 3000 already in useFix:
server.js: const PORT = 5000;Database not connectingFix: Ensure your PostgreSQL server is running and the credentials in your .env file are correct.
If you want to host your project online for others to use:
npm installnode server.js.env.✨ GearGo is now ready to go!