https://github.com/roackb2/bidder
A simple bidding system
https://github.com/roackb2/bidder
Last synced: 11 months ago
JSON representation
A simple bidding system
- Host: GitHub
- URL: https://github.com/roackb2/bidder
- Owner: roackb2
- Created: 2016-07-02T02:17:12.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-07T14:42:16.000Z (almost 10 years ago)
- Last Synced: 2025-06-21T03:37:51.772Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bidder
This is a simple bidding system, that users could sell items and buy items by bidding.
# Run
## Run Locally
To run locally, you could just issue `npm start`, with some service running on your local computer, including:
* Redis server, with no protection mode
* RabbitMQ server, with following controlling commands issued:
* rabbitmqctl add_user test test
* rabbitmqctl set_user_tags test administrator
* rabbitmqctl set_permissions -p / test ".\*" ".\*" ".\*"
You also have to setup local environment variables like following, substituting variables with your own needs,
if not setting RabbitMQ as stated above:
```bash
export AWS_REGISTRY=1234.dkr.ecr.us-east-1.amazonaws.com
export REDIS_CLUSTER=localhost
export RABBIT_HOST=localhost
export RABBIT_USER=test
export RABBIT_PASSWORD=test
export RABBIT_VHOST=test
```