Inspired by History TV18's show "Baggage Battles"
- Register yourself if you are new here.(use good username).
- Login to your account if not already logged in.
- Select the item which you liked and bid on it.
- Make sure that your bid is high enough.
- You can comment in comment section of the particular item.
- After owner close the Auction the user with highest bid will win.
- Winner will able to see message in the listing of that item.
- Have fun bidding!😃🤟
Create a new folder anywhere on your system open terminal in this new folder.
- The first thing to do is to clone the repository:
$ git clone https://github.com/chetan6780/Auctions.git
$ cd Auctions
- Create a virtual environment to install dependencies in and activate it:
$ virtualenv env
$ .\env\Scripts\activate
for linux
$ source env/bin/activate
- install the dependencies:
(env)$ pip install -r requirements.txt
Note: (env)
in front of the prompt. This indicates that this terminal
session operates in a virtual environment set up by virtualenv
.
For pipenv you will not see any (env)
in front of the propt.
- Once
pip
has finished downloading the dependencies:
(env)$ python manage.py makemigrations
(env)$ python manage.py migrate
(env)$ python manage.py runserver
The application should be running on http://127.0.0.1:8000/