This repository contains the project's source files.
Files included:
- app.py
- auto_decoder.py
- ctf_image_tool.py
- ctf_image_tool.html
- index.html
- main.html
- Untitled-1.json
How to push this folder to GitHub (example):
- Create a repository on GitHub named
templatesunder the accountYanMo5(or choose a different name).- Web: https://github.com/new
- Or use the GitHub CLI:
gh repo create YanMo5/templates --public --source=. --remote=origin --push
- Locally (already done by this script):
git remote add origin https://github.com/YanMo5/templates.git git branch -M main git push -u origin main
If you prefer using SSH, set the remote to git@github.com:YanMo5/templates.git instead of the HTTPS URL.
Notes:
- You must be authenticated to GitHub in your terminal to push. Using
gh auth loginor configuring Git credentials is required. - If you want me to create the remote repo for you, provide a GitHub personal access token (PAT) with repo scope or authenticate with the GitHub CLI on this machine.