{"id":31642510,"url":"https://github.com/tameronline/mystrotamer","last_synced_at":"2026-02-15T13:37:09.823Z","repository":{"id":296295628,"uuid":"992890698","full_name":"TamerOnLine/mystrotamer","owner":"TamerOnLine","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-29T23:06:58.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-05-29T23:31:35.111Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TamerOnLine.png","metadata":{"files":{"readme":"README-full-mystrotamer.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-29T21:53:41.000Z","updated_at":"2025-05-29T23:07:01.000Z","dependencies_parsed_at":"2025-05-29T23:31:36.310Z","dependency_job_id":"2bf97c4f-073b-468c-8b53-bba23109ae96","html_url":"https://github.com/TamerOnLine/mystrotamer","commit_stats":null,"previous_names":["tameronline/mystrotamer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TamerOnLine/mystrotamer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fmystrotamer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fmystrotamer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fmystrotamer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fmystrotamer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TamerOnLine","download_url":"https://codeload.github.com/TamerOnLine/mystrotamer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fmystrotamer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278717435,"owners_count":26033542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-07T04:00:00.305Z","updated_at":"2025-10-07T04:00:05.597Z","avatar_url":"https://github.com/TamerOnLine.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🚀 Full Deployment Guide for mystrotamer on mystrotamer.com\n\n---\n\n## 🧱 1. Create a New User on the Server\n\n```bash\nsudo adduser mystrotamer\nsudo usermod -aG sudo mystrotamer\nsudo mkdir -p /home/mystrotamer/.ssh\nsudo chown mystrotamer:mystrotamer /home/mystrotamer/.ssh\nsudo chmod 700 /home/mystrotamer/.ssh\n```\n\n---\n\n## 🔐 2. Generate SSH Key from Windows to Server\n\n```powershell\nssh-keygen -t ed25519 -C \"mystrotamer-key-local to server\" -f ${env:USERPROFILE}\\.ssh\\id_mystrotamer\n```\n\n\n```powershell\nGet-Content ${env:USERPROFILE}\\.ssh\\id_mystrotamer.pub | Set-Clipboard\n```\n\n```powershell\nHost github.com\n    HostName github.com\n    User git\n    IdentityFile ~/.ssh/id_github_mystrotamer\n    IdentitiesOnly yes\n```\n\n\n### 📥 Paste the Key into the Server:\n\n```bash\nsudo nano /home/mystrotamer/.ssh/authorized_keys\nsudo chmod 600 /home/mystrotamer/.ssh/authorized_keys\nsudo chown mystrotamer:mystrotamer /home/mystrotamer/.ssh/authorized_keys\n```\n\n### ✅ Test the Connection:\n\n```powershell\nssh -i ${env:USERPROFILE}\\.ssh\\id_mystrotamer -p 13976 mystrotamer@78.47.205.8\n```\n\n---\n\n## 🖥️ 3. Generate SSH Key on Local Machine (Windows) for GitHub\n\n```powershell\nssh-keygen -t ed25519 -C \"mystrotamer-github-local\" -f \"$env:USERPROFILE\\.ssh\\id_github_mystrotamer\"\nGet-Content ${env:USERPROFILE}\\.ssh\\id_github_mystrotamer.pub | Set-Clipboard\n```\n\n📌 Go to [https://github.com/settings/keys](https://github.com/settings/keys), click **New SSH Key**, and paste the copied key.\n\n✅ Test the connection from your local machine:\n\n```powershell\nssh -T git@github.com\n```\n\n---\n\n## 🔗 4. Generate GitHub Key from Server\n\n```bash\nssh-keygen -t ed25519 -C \"mystrotamer-github-server\" -f ~/.ssh/id_github_mystrotamer\n```\n\n```bash\ncat ~/.ssh/id_github_mystrotamer.pub\n```\n\n```bash\nnano ~/.ssh/config\n```\n\n```bash\nHost github.com\nHostName github.com\nUser git\nIdentityFile ~/.ssh/id_github_mystrotamer\nIdentitiesOnly yes\n```\n\n```bash\neval \"$(ssh-agent -s)\"\nssh-add ~/.ssh/id_github_mystrotamer\n```\n\n\n📌 Add the key to GitHub → Settings → SSH Keys.\n\n```bash\nssh -T git@github.com\n```\n\n---\n\n## 📦 5. Clone the Project from GitHub\n\n```bash\ncd ~\ngit clone git@github.com:TamerOnLine/mystrotamer.git\ncd mystrotamer\n```\n\n---\n\n## 🐍 6. Setup Python Environment\n\n```bash\npython3 -m venv venv\nsource venv/bin/activate\npip install --upgrade pip\npip install -r requirements.txt\n```\n\n---\n\n## 💻 7. Run Flask Locally\n\n```bash\nexport FLASK_APP=app.py\nexport FLASK_ENV=development\nflask run --host=0.0.0.0 --port=5777\n```\n\n---\n\n## 🌀 8. Setup Gunicorn and Nginx\n\n```bash\ngunicorn --bind 127.0.0.1:8777 myapp:app\n```\n\nConfigure Nginx File:\n\n```nginx\nserver {\n    listen 80;\n    server_name mystrotamer.com;\n\n    location / {\n        proxy_pass http://127.0.0.1:8777;\n        proxy_set_header Host $host;\n        proxy_set_header X-Real-IP $remote_addr;\n    }\n}\n```\n\n```bash\nsudo ln -s /etc/nginx/sites-available/mystrotamer /etc/nginx/sites-enabled/\nsudo nginx -t\nsudo systemctl reload nginx\n```\n\n---\n\n## 🔒 9. Enable HTTPS\n\n```bash\nsudo apt install certbot python3-certbot-nginx -y\nsudo certbot --nginx -d mystrotamer.com --http-01-port 80\n```\n\n---\n\n## 🛡️ 10. Enable UFW Firewall\n\n```bash\nsudo ufw allow OpenSSH\nsudo ufw allow 80,443,5777/tcp\nsudo ufw enable\n```\n\n---\n\n## ✅ Setup Completed Successfully 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftameronline%2Fmystrotamer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftameronline%2Fmystrotamer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftameronline%2Fmystrotamer/lists"}