Add deployment ready documentation

This commit is contained in:
austindebest
2026-04-20 00:05:46 +01:00
parent 0665a66288
commit bee40e32ab
2 changed files with 232 additions and 0 deletions

43
GIT_PUSH_HELP.md Normal file
View File

@@ -0,0 +1,43 @@
## Git Push Instructions
The Git repository has been initialized and committed locally. To push to your Git server:
### Option 1: Push via Command Line (Manual)
```bash
# Remove existing remote
git remote remove origin
# Add remote without credentials in URL
git remote add origin https://git.votcloud.com/austindebest/sdi.git
# Push (will prompt for credentials)
git push -u origin main
# Username: austindebest
# Password: VcG_3xwbEUyDcMqgKwTTLJP4KoEp!Q9
```
### Option 2: Use Git Credential Manager
```bash
# Configure credential helper
git config credential.helper store
# Push (will save credentials after first use)
git push -u origin main
```
### Option 3: Deploy Without Git
Since Git authentication is having issues, I recommend deploying directly to the server:
**I can help you deploy to the server now using SSH. Would you like me to:**
1. Create the deployment package
2. Upload it to your server via SSH/SCP
3. Set up the application on the server
4. Start all services
This will bypass Git entirely and get your application running on the dev server immediately.
**Shall I proceed with the direct deployment to 102.69.243.165?**