mirror of
https://github.com/Sabermrddz/QuantCore-FX.git
synced 2026-08-06 15:37:46 +00:00
1.6 KiB
1.6 KiB
GitHub Setup — QUICK START (5 Minutes)
🚀 TL;DR — Copy & Paste
1. Create GitHub Repository
- Go to github.com
- Click "+" → New repository
- Name:
apex_layer1 - Select "Add .gitignore: Python"
- Click "Create repository"
- Copy the HTTPS URL (looks like:
https://github.com/YOUR_USERNAME/apex_layer1.git)
2. Open PowerShell
cd "c:\Users\sober\Desktop\QuantCore FX\apex_layer1"
# First time setup
git config --global user.name "Your Name"
git config --global user.email "your.email@gmail.com"
# Initialize Git
git init
# Add all files
git add .
# Create first commit
git commit -m "Initial commit: APEX Layer 1 — Currency Strength Engine"
# Add remote (replace with YOUR URL from GitHub)
git remote add origin https://github.com/YOUR_USERNAME/apex_layer1.git
# Rename branch to main
git branch -M main
# Push to GitHub
git push -u origin main
3. Authenticate
When GitHub asks for password:
- Use your Personal Access Token (not your password)
To create a token:
- GitHub → Settings → Developer settings → Personal access tokens
- Click "Generate new token"
- Name:
apex_layer1 - Scope: ✅
repo - Copy token
- Paste when prompted
✅ Verify
- Refresh GitHub in browser
- See your files? ✅ Success!
📝 Future Updates (Easy)
# After making changes:
git add .
git commit -m "Description of what changed"
git push origin main
❓ Need Help?
See GITHUB_SETUP_GUIDE.md for detailed instructions & troubleshooting.