A website for auction where users are either buyers or sellers. Buyers can bid on available auctions and sellers can add new items to sell.
To run the project as a dev you can just run the Django server for backend and Vite server for React as frontend.
cd auction_site
assuming you've cloned the repo without changing root directory name.- Install all dependencies listed in
requirements.txt
:
pip install -r requirements.txt
- Create a database on local
pgAdmin
and set up environment variables forsettings.py
in the folderbackend/
. - Run the server
python manage.py runserver
- Change directory to
forntend/
:
cd frontend
- Install the dependencies:
npm install
- Run the vite app:
npm run dev