https://github.com/kayprogrammer/bidout-auction-react
A Simple Bidding Platform Built With ReactJs, Chakra UI And Redux Toolkit
https://github.com/kayprogrammer/bidout-auction-react
api-consumption chakra-ui reactjs redux-toolkit
Last synced: 4 months ago
JSON representation
A Simple Bidding Platform Built With ReactJs, Chakra UI And Redux Toolkit
- Host: GitHub
- URL: https://github.com/kayprogrammer/bidout-auction-react
- Owner: kayprogrammer
- Created: 2023-04-28T23:51:58.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-25T18:53:50.000Z (about 2 years ago)
- Last Synced: 2025-04-05T10:41:29.824Z (10 months ago)
- Topics: api-consumption, chakra-ui, reactjs, redux-toolkit
- Language: JavaScript
- Homepage: https://bidout.netlify.app
- Size: 1.78 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BidOut Auction React
### Related Repos
* [Bidout Auction API With Sanic](https://github.com/kayprogrammer/bidout-auction-v2)
* [Bidout Auction API With Litestar](https://github.com/kayprogrammer/bidout-auction-v3)
* [Bidout Auction API With Django Rest Framework](https://github.com/kayprogrammer/bidout-auction-v4)
* [Bidout Auction API With Django Ninja](https://github.com/kayprogrammer/bidout-auction-v5)
* [Bidout Auction API With FastAPI](https://github.com/kayprogrammer/bidout-auction-v6)
* [Bidout Auction API With Go Fiber](https://github.com/kayprogrammer/bidout-auction-v7)

#### React Docs: [Documentation](https://legacy.reactjs.org/docs/getting-started.html)
#### Chakra UI Docs: [Documentation](https://chakra-ui.com/getting-started)
## How to run locally
* Download this repo or run:
```bash
$ git clone git@github.com:kayprogrammer/bidout-auction-react.git
```
#### In the root directory:
- Install all dependencies
```bash
$ npm install
```
- Create an `.env` file and copy the contents from the `.env.example` to the file and set the respective values.
- Run Locally
```bash
$ npm start
```
#### With Docker
- Docker Direct
```bash
$ docker build -t bidout-auction-react .
$ docker run -it -p 3000:3000 bidout-auction-react
```
- Docker With Makefile
```bash
$ make build
$ make up
```
