summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2015-03-04 18:09:19 -0300
committerVictor Shyba <victor.shyba@gmail.com>2015-03-04 18:09:19 -0300
commitd7d368b2e3ed93fb5544733d7e1eb6c7f59a4bfd (patch)
tree139138c669458f54ab77e69de933aeee4e325e8c /README.md
parentfab8a5cb9864fe939e687966fd9a5f5f29102bdc (diff)
For #311, adding reminders for provider creation
Small fixes and making it clear that a provider creation is essential to start the agent. Also REQUIREMENTS section was mixed up with provider instructions.
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/README.md b/README.md
index 28793fce..9e91ce20 100644
--- a/README.md
+++ b/README.md
@@ -12,10 +12,12 @@ The Pixelated User Agent is the mail client of the Pixelated ecosystem, it is co
## Getting started for development
+### Registering with a provider
First of all, you should have an account on a LEAP/Pixelated provider with email support.
* You can create a developer account at our [Dev Provider](https://dev.pixelated-project.org/).
* There are some other LEAP providers on the [Bitmask page](https://bitmask.net), but they don't support email currently.
+### Instructions
Requirements:
* vagrant
* virtualbox
@@ -31,16 +33,19 @@ From the root folder, set up the vagrant machine:
You can log into the machine and view project root folder with:
vagrant ssh
- cd /vagrant
From here on you can run the tests for the UI by going to the **web-ui** folder or for the API by going to the **service** folder and running:
- cd web-ui
+ cd /vagrant/web-ui
./go test
+ cd /vagrant/service
+ ./go test
You can also run the mail client with:
pixelated-user-agent --host 0.0.0.0
+As soon as the agent start you will be asked for username, password and the [provider you registered with](/pixelated-project/pixelated-user-agent/blob/master/README.md#registering-with-a-provider).
+
Then point your browser to [http://localhost:3333](http://localhost:3333) to see it running.
## Getting started as an user