Build communities with people who share your interests.
TODO: Describe goals of the project
Web: Phoenix Framework & Phoenix LiveView
For development, we recommend to use docker-compose.
First run docker-compose up --build
and wait until containers are up.
Juntos is reachable at http://localhost:4000/
In case you want to running it as a single docker image:
- Build the combo docker image with
docker build -t juntos:dev .
- Start container:
docker run --name juntos-dev -e PORT=3030 -p 3030:3030 -e DATABASE_URL="postgres://postgres:postgres@<YOUR LOCAL IP>:5432/postgres" juntos:dev
# eg.
docker run --name juntos-dev -e PORT=3030 -p 3030:3030 -e DATABASE_URL="postgres://postgres:postgres@192.168.0.12:5432/postgres" juntos:dev
- Stop container
docker stop juntos-dev && docker container rm juntos-dev
Running postgres within a docker image:
docker run --rm --name pg-docker -d -p 5432:5432 postgres:9.6-alpine
TODO: setup containerised deployment
Released under the MIT License. TODO: add license file