Releases: CivicTechTO/polis
Releases · CivicTechTO/polis
deploy-edge-20250401
Azure Deployment tutorial
- In Azure cloud shell
- Use the
docker-compose.yml
below if you plan to deploy as web service, thedocker-compose.yml
for Azure web server must be smaller than 4000 B file size - 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
- Add and improve semantic structure of home page by @yshng in #126
- Update node module version by @NewJerseyStyle in #144
- Revert "Feature: client-admin upgrade to react router v6" by @thomassth in #148
New Contributors
Full Changelog: deploy-edge-20250203...deploy-edge-20250323
deploy-edge-20250203
Deployment tutorial
- Install Docker if you do not have Docker installed on your system.
- Download docker-compose.yml and example.env
- Rename
example.env
to.env
- 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
- [FIX] remove extra
<p>
tags around descriptions by @thomassth in #96 - update d3 imports in client-report by @thomassth in #97
- export components for easier development by @thomassth in #100
- Removed @radium decorator in favour of manually wrapped class compone… by @thomassth in #99
- FIX: update redux connect in client-admin moderate-comments by @thomassth in #98
- Add thead in conversation tabs by @YumiChen in #111
- Fix in-page link without target by @YumiChen in #112
- Fix comment form textarea with multiple labels issue by @YumiChen in #113
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
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