Note: Apple Transporter is only required for notarizing software
- PyOxidizer - Install instructions
- Apple Transporter - Install instructions
- Rust apple_codesign - Docs
| #!/usr/bin/env python3 | |
| """ | |
| procio_monitor.py | |
| A lightweight 'iotop-like' Python script to continuously list processes | |
| with the highest disk read/write activity in bytes/sec over a sampling interval. | |
| Requirements: psutil | |
| Usage examples: | |
| python procio_monitor.py # default: interval=1.0s, top 15, sort by write |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Taskgraph full", | |
| "type": "python", | |
| "request": "launch", | |
| "program": "", // <---- Add value from `pyenv which taskgraph` (or just `which taskgraph` if you don't use pyenv) | |
| "console": "integratedTerminal", | |
| "args": ["full", "-p", "taskcluster/test/params"], // Adjust these as needed |
Note: Apple Transporter is only required for notarizing software
| [Unit] | |
| Description=TeamCity Server | |
| After=network.target | |
| [Service] | |
| Type=forking | |
| PIDFile=/opt/teamcity/logs/teamcity.pid | |
| ; Make sure the CATALINA_PID env variable is setup in $TEAMCITY_HOME/bin/catalina.sh | |
| User=teamcity | |
| ExecStart=/opt/teamcity/bin/teamcity-server.sh start |
| -- Create extensions | |
| create extension postgis; | |
| create extension hstore; | |
| create extension fuzzystrmatch; | |
| create extension postgis_tiger_geocoder; | |
| create extension postgis_topology; | |
| -- Change owner of schemas | |
| alter schema tiger owner to rds_superuser; | |
| alter schema topology owner to rds_superuser; |