1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/docs/about/getting_started.markdown

22 lines
459 B
Markdown
Raw Normal View History

---
layout: default
2011-04-01 09:24:50 -04:00
title: Getting Started
---
2011-04-01 14:20:47 -04:00
First off, install the gem:
$ gem install fog
2011-04-01 14:20:47 -04:00
## Setting Up Local Storage
We will be using local storage in the example, so first off make a local directory that things can go in.
$ mkdir ~/fog
Now We can start building out our script to play with. First thing is first, we will setup a storage connection.
Fog::Storage.new(
2011-04-01 14:20:47 -04:00
:local_root => '~/fog',
:provider => 'Local',
)