A simple vagrant configuration to create a box running redis.
- Install Vagrant
- Install VirtualBox
- Clone the project locally:
git clone [email protected]:JasonPunyon/redishobo.git vagrant-redis
- Move into the project directory:
cd vagrant-redis
- Provision the virtual machine using Vagrant:
vagrant up
- Make sure you have the Redis CLI installed:
brew install redis
(Mac) - Test the connection to verify everything is working:
redis-cli -p 6379
(or any other cluster port)
You should now have a redis server running locally at 127.0.0.1:6379
.