Skip to content

Releases: CivicTechTO/polis

deploy-edge-20250401

23 Mar 18:55
13d200c
Compare
Choose a tag to compare

Azure Deployment tutorial

  1. In Azure cloud shell
  2. Use the docker-compose.yml below if you plan to deploy as web service, the docker-compose.yml for Azure web server must be smaller than 4000 B file size
  3. Run az webapp create --resource-group PolisDev --plan ASP-PolisDev-ae5d --name civictech-polis --multicontainer-config-type compose --multicontainer-config-file docker-compose.yml in the Azure cloud shell

If you want to deploy as Azure Container App, here is the Azure CLI command.

az containerapp compose create \
    --resource-group PolisDev \
    --environment polis-civictech \
    --compose-file-path docker-compose.yml

The above instructions will start the polis server of our version by pulling the pre-built images from our Docker Hub repository, but it is possible to build from Dockerfile if you want.

What's Changed

New Contributors

Full Changelog: deploy-edge-20250203...deploy-edge-20250323

deploy-edge-20250203

03 Feb 21:02
d099bd6
Compare
Choose a tag to compare

Deployment tutorial

  1. Install Docker if you do not have Docker installed on your system.
  2. Download docker-compose.yml and example.env
  3. Rename example.env to .env
  4. Run docker compose --profile postgres up
wget https://github.com/CivicTechTO/polis/releases/download/deploy-edge/docker-compose.yml
wget https://github.com/CivicTechTO/polis/raw/refs/heads/edge-civictechto/example.env
mv example.env .env
docker compose --profile postgres up

The above instructions will start the polis server of our version by pulling the pre-built images from our Docker Hub repository

What's Changed

New Contributors

  • @YumiChen made their first contribution in #111
  • @yshng helped in reviewing pull requests for accessibility patches
  • @Zen-cronic helped in reviewing pull request for Storybook and JavaScript coding style

Full Changelog: deploy-edge...deploy-edge-20250203

deploy-edge

06 Dec 16:20
aae707c
Compare
Choose a tag to compare

By using the following docker-compose.yml with the example.env from repository and run docker compose --profile postgres up will start the polis server of our version by pulling the images from our Docker Hub repository