https://github.com/kayprogrammer/bidout-auction-v1
An Auction platform built with Django MVT
https://github.com/kayprogrammer/bidout-auction-v1
django html-css-javascript pgadmin4 postgresql python
Last synced: 7 months ago
JSON representation
An Auction platform built with Django MVT
- Host: GitHub
- URL: https://github.com/kayprogrammer/bidout-auction-v1
- Owner: kayprogrammer
- Created: 2022-12-20T00:08:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T13:39:03.000Z (over 1 year ago)
- Last Synced: 2024-09-09T16:30:38.534Z (over 1 year ago)
- Topics: django, html-css-javascript, pgadmin4, postgresql, python
- Language: HTML
- Homepage: https://bidout.vercel.app
- Size: 6.87 MB
- Stars: 2
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BidOut Auction V1 (MVT)

#### Django Docs: [Documentation](https://docs.djangoproject.com/en/4.2/)
#### PG ADMIN: [pgadmin.org](https://www.pgadmin.org)
## How to run locally
* Download this repo or run:
```bash
$ git clone git@github.com:kayprogrammer/bidout-auction-v1.git
```
#### In the root directory:
- Install all dependencies
```bash
$ pip install -r requirements.txt
```
- Create an `.env` file and copy the contents from the `.env.example` to the file and set the respective values. A postgres database can be created with PG ADMIN or psql
- Run Locally
```bash
$ python manage.py migrate
```
```bash
$ python manage.py runserver
```
- Run With Docker
```bash
$ docker-compose up --build -d --remove-orphans
```
OR
```bash
$ make build
```
- Test Coverage
```bash
$ pytest --disable-warnings -vv
```
OR
```bash
$ make test
```
#### CLIENT
#### Live Url: [BidOut Platform](https://bidout.vercel.app/)




#### ADMIN
