Skip to content

Latest commit

 

History

History
79 lines (56 loc) · 2.63 KB

README.md

File metadata and controls

79 lines (56 loc) · 2.63 KB

AUCTION-HOUSE

Inspired by History TV18's show "Baggage Battles"

How it works?

  • 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!😃🤟

How to set up on local machine

Pre-setup

Create a new folder anywhere on your system open terminal in this new folder.

Setup

  1. The first thing to do is to clone the repository:
$ git clone https://github.com/chetan6780/Auctions.git
$ cd Auctions
  1. Create a virtual environment to install dependencies in and activate it:
$ virtualenv env
$ .\env\Scripts\activate
for linux
$ source env/bin/activate
  1. 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.

  1. 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/

Preview

1 2 3 4 5 6 7 8 9