Add AWX local setup scripts and docs

This commit is contained in:
alex-local
2025-09-05 23:39:54 +02:00
parent e451d79bd4
commit d86e45ee82
4 changed files with 215 additions and 1 deletions

21
README_GIT_PUSH.md Normal file
View File

@@ -0,0 +1,21 @@
Pushing this directory to your git host
To create a new remote repo and push this local setup, run these commands from the host that owns `/home/alex/awx-operator/awx-local-setup`:
```bash
cd /home/alex/awx-operator/awx-local-setup
# initialize a local repo
git init
git add .
git commit -m "Add AWX local setup scripts and README"
# create a remote repository on your git host (GitHub/GitLab). Example with GitHub CLI:
# gh repo create my-org/awx-local-setup --private --source=. --remote=origin
# or add a remote manually and push
git remote add origin git@github.com:YOURUSER/awx-local-setup.git
git branch -M main
git push -u origin main
```
If you'd like I can initialize the local git repo and commit here; pushing requires remote credentials or a remote URL.