diff --git a/README.md b/README.md
index 735d632a6eeaaab89a8d15bd67426abb6f948b6b..80d136b741b2025fda0cd41e02bb08ec5b49bfb3 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,47 @@
-# lde-api-regression-test
+# LDE API Regression Test #
 
+
+Regression test is a tool for validate existent functionality with each new release of code.
+
+## Getting Started
+
+### Requirements
+
+- [Python 3.5+](https://www.python.org/)
+- [pip](https://pip.pypa.io/en/stable/installing/)
+- [virtualenv](https://virtualenv.pypa.io/en/latest/installation/)
+
+### Installation
+
+Clone this repository
+
+```
+git clone git@gitlab.c3sl.ufpr.br:simcaq/lde-api-regression-test.git
+```
+Go to this repository
+```
+cd lde-api-regression-test
+```
+Create a virtual environment
+```
+virtualenv -p python3.5 env
+```
+Activate the virtual environment
+```
+source env/bin/activate
+```
+Install dependencies
+```
+pip install -r requirements.txt
+```
+
+## Usage
+
+### Set settings.py
+
+Set base url to the running API (local ex.: localhost:PORT):
+
+```
+BASE_URL="https://simcaq.c3sl.ufpr.br/api/v1/"
+```
+Set 
\ No newline at end of file