ABAAS rents is a marketplace for rooms and apartments and basically any houses renting.
- Node.js (v14 or later)
- npm or yarn
- PostgreSQL (or any other supported database)
git clone https://github.com/yourusername/abaas.git
cd abaasCreate a .env file in both the server and client directories by copying the provided .env.example files.
cp server/.env.example server/.env
cp client/.env.example client/.envNavigate to both the server and client directories and install the required dependencies.
cd server
npm install
cd ../client
npm installMake sure your PostgreSQL server is running and create a new database. Update the database connection settings in the server/.env file.
Navigate to the server directory and run the database migrations.
cd server
npx prisma migrate devStart the backend server:
cd server
npm run devStart the frontend server:
cd client
npm startOpen your browser and navigate to http://localhost:3000 to access the frontend. The backend server will be running on http://localhost:5000.
git clone https://github.com/yourusername/abaas.git
cd abaasCreate a .env file in both the server and client directories by copying the provided .env.example files.
cp server/.env.example server/.env
cp client/.env.example client/.envUse Docker Compose to build and run the containers.
docker-compose up --buildOpen your browser and navigate to http://localhost:5173 to access the frontend. The backend server will be running on http://localhost:3000.



