mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-09 10:56:01 +00:00
- Added new 01_core.yml orchestrating all Bluesky role sub-tasks with run-once logic - Moved PDS and Social App routines to 02_pds.yml and 03_social_app.yml - Updated DNS task to 04_dns.yml - Reworked main.yml to delegate execution to 01_core.yml and prevent repeated runs - Corrected BLUESKY_GEOLOCATION_PATH to new upstream location: src/geolocation/index.tsx - Improved structure and clarity of the role, aligning with current Infinito.Nexus task layout https://chatgpt.com/share/69321001-b8cc-800f-9589-2250b8a97fd3
22 lines
679 B
YAML
22 lines
679 B
YAML
- name: clone social app repository
|
|
git:
|
|
repo: "https://github.com/bluesky-social/social-app.git"
|
|
dest: "{{ BLUESKY_SOCIAL_APP_DIR }}"
|
|
version: "main"
|
|
force: true
|
|
notify:
|
|
- docker compose up
|
|
- docker compose build
|
|
|
|
- name: Force BAPP_CONFIG_URL to same-origin /config
|
|
ansible.builtin.replace:
|
|
path: "{{ BLUESKY_GEOLOCATION_PATH }}"
|
|
regexp: '^\s*const\s+BAPP_CONFIG_URL\s*=\s*.*$'
|
|
replace: "const BAPP_CONFIG_URL = '/config'"
|
|
|
|
- name: Force IPCC_URL to same-origin /ipcc
|
|
ansible.builtin.replace:
|
|
path: "{{ BLUESKY_GEOLOCATION_PATH }}"
|
|
regexp: '^\s*const\s+IPCC_URL\s*=\s*.*$'
|
|
replace: "const IPCC_URL = '/ipcc'"
|