diff options
-rw-r--r-- | README.md | 11 | ||||
-rwxr-xr-x | install-pixelated.sh | 12 |
2 files changed, 15 insertions, 8 deletions
@@ -61,6 +61,7 @@ To run the backend tests: ```bash (user-agent-venv)vagrant@jessie:/vagrant$ cd service (user-agent-venv)vagrant@jessie:/vagrant/service$ ./go test + (user-agent-venv)vagrant@jessie:/vagrant/service$ cd .. ``` To run the frontend tests: @@ -68,6 +69,7 @@ To run the frontend tests: ```bash (user-agent-venv)vagrant@jessie:/vagrant$ cd web-ui (user-agent-venv)vagrant@jessie:/vagrant/web-ui$ ./go test + (user-agent-venv)vagrant@jessie:/vagrant/web-ui$ cd .. ``` To run the functional tests: @@ -75,6 +77,7 @@ To run the functional tests: ```bash (user-agent-venv)vagrant@jessie:/vagrant$ cd service (user-agent-venv)vagrant@jessie:/vagrant/service$ ./go functional + (user-agent-venv)vagrant@jessie:/vagrant/service$ cd .. ``` 9) You're all set! We've prepared [a couple of issues labeled "Beginner"](https://github.com/pixelated/pixelated-user-agent/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+label%3ABeginners+) that are a good place to dive into the project. Happy Hacking! @@ -120,6 +123,14 @@ To run the pixelated user agent multi user mode, please run the following: You will need to change `dev.pixelated-project.org` to the hostname of the leap provider that you will be using. Once that is done, you can use by browsing to [http://localhost:3333](http://localhost:3333), where you will be prompted for your email username and password. +## Self-signed provider certs + +You might also need to add your LEAP provider ssl certificate to pixelated manually for now, with the following steps: + +The easiest way to get this is downloading if from https://your.provider.org/ca.crt. +Rename the certificate based on your provider domain name like this `your.leapprovider.org.crt` and put it into `services/pixelated/certificates/`. + + ## Continuous Integration All commits to the pixelated user agent code trigger all tests to be run in [snap-ci](https://snap-ci.com/pixelated/pixelated-user-agent/branch/master). diff --git a/install-pixelated.sh b/install-pixelated.sh index 35b77fa5..e4f4ae64 100755 --- a/install-pixelated.sh +++ b/install-pixelated.sh @@ -115,17 +115,13 @@ cat <<EOF ############### -## You will need an account in a LEAP provider with mail support. You may find some at http://bitmask.net/ - -## You might also need to add your LEAP provider ssl certificate to pixelated manually for now, with the following steps: -## The easiest way to find this is accessing https://your.provider.org/ca.crt -## Rename the certificate based on your provider domain name like this 'your.leapprovider.org.crt' -## Put it in services/pixelated/certificates/ +## You will need an account in a LEAP provider with mail support. You can request an invite code for +## https://dev.pixelated-project.org, please refer to point 4) in the [Getting started guide](https://github.com/pixelated/pixelated-user-agent#getting-started). ## Once you are done, activate your virtual environment by running: ## source $VIRTUALENV_PATH/bin/activate -## The User agent will be available on localhost:3333 after running -## pixelated-user-agent +## The User agent will be available on http://localhost:3333 after running: +## pixelated-user-agent EOF |