harveyrandall / auctions

An auction website, similar to Ebay, created using Django as part of a Web Programming module at university.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table of Contents

Heroku

A deployed version of this project is available at https://auctions-website.herokuapp.com/.

Installation

The repository tracks only the Django project. To clone it and keep the correct directory structure do the following:

  1. Create a virtual environment eg. virtualenv auctions
  2. Enter the directory it creates and activate the environment
    cd auctions
    . bin/activate
  3. Clone the repository
    • git clone https://github.com/harveyrandall/auctions.git or git clone git@github.com:harveyrandall/auctions.git depending on whether you use SSH or HTTPS.
  4. Enter the directory the repository is cloned into
    cd auctions
  5. Install the packages the project requires
    pip install -r requirements.txt

The project should now be all setup and ready to run.

Running the server

Run the server like any normal Django project.

python manage.py runserver

To see the progress so far open 127.0.0.1:8000 in your browser.

Superuser

I have created a superuser with the following details:

  • Username: admin
  • Password: password

About

An auction website, similar to Ebay, created using Django as part of a Web Programming module at university.


Languages

Language:Python 66.4%Language:HTML 30.7%Language:CSS 1.9%Language:JavaScript 1.0%