Website for RDesk IT Services.
List the main technologies and libraries used:
- React
- React Router
- Axios (for API calls)
- CSS
- Bootstrap
- Node.js
- Express.js
- Postgres
install code locally
git clone [email protected]:yusuf-quddus/RDESK.git
cd RDESK
install dependencies
cd frontend
npm install
cd backend
npm install
environment variables to connect to DB
RDS_HOSTNAME=your_db_hostname
RDS_USERNAME=your_db_username
RDS_PASSWORD=your_db_password
RDS_PORT=your_db_port
build and run:
cd backend
npm run build:ui
npm run start
go to -> http://localhost:3000/
cd backend
npm run build:ui
git push origin main
project-name/
├── frontend/ # Frontend code
│ ├── public/
│ │ ├── images/
│ ├── src/
│ │ ├── components/
│ │ ├── css/
│ │ ├── data/
│ │ ├── App.jsx
│ │ └── main.jsx
│ ├── package.json
│ └── index.html
├── backend/ # Backend code
│ ├── .env # Environment variables
│ ├── package.json
│ └── server.js
└── README.md