- 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 [email protected]:ipsos-org/ipsosorg.git) - In
./ipsosorgrun the commandmeteor run - Go to
http://localhostin 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 [email protected]: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:8080in your browser - To stop it, run the
docker stop ipsoscommand - 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:8080in your browser
- When you first run
meteoryou 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 nouisliderand thenmeteor run.