- If you have not already done so, install meteor
- Clone the repository
git clone https://github.com/ipsos-org/ipsosorg.git
(or using SSH:git clone git@github.com:ipsos-org/ipsosorg.git
) - In
./ipsosorg
run the commandmeteor run
- Go to
http://localhost
in your browser
- If you have not already done so, install docker
- Clone the repository
git clone https://github.com/ipsos-org/ipsosorg.git
(or using SSH:git clone git@github.com:ipsos-org/ipsosorg.git
) - Build the docker image by running the command
docker build -t ipsosorg .
in./ipsosorg
- Once built, the image should be visible from the command
docker images
- Create and run a container from the image:
docker run --name ipsos -d -p 8080:8080 ipsosorg
- Go to
http://localhost:8080
in your browser - To stop it, run the
docker stop ipsos
command - To restart the container, run
docker start ipsos
- If you have not already done so, install docker
- A docker image is available on Docker Hub
- Pull the docker image:
docker pull tpmccauley/ipsos
- Create a container from the image:
docker run -d -p 8080:8080 ipsos
- Go to
http://localhost:8080
in your browser
- When you first run
meteor
you may encounter the errorUnable to resolve some modules
. This can often be fixed by following the recommendations given bymeteor
, e.g. runningmeteor npm install --save bootstrap tone nouislider
and thenmeteor run
.