このガイドでは、Opal で作成したアプリをこのリポジトリに追加する手順を説明します。
This guide explains how to add your Opal-created app to this repository.
このリポジトリページの右上にある “Fork” ボタンをクリックします。
Click the “Fork” button at the top right of this repository page.
git clone https://github.com/YOUR_USERNAME/app-with-opal.git
cd app-with-opal
git checkout -b add-my-app
アプリ名に合わせてブランチ名を変更してください。
Change the branch name to match your app name.
cd apps
mkdir my-app-name
cd my-app-name
Opal からエクスポートしたファイルをこのフォルダにコピーします。
Copy the files exported from Opal into this folder.
apps/.template/README.md をコピーして編集します:
Copy and edit apps/.template/README.md:
cp ../.template/README.md README.md
エディタで開いて、アプリの情報を記入します。
Open in an editor and fill in your app information.
git add .
git commit -m "Add [your app name]"
git push origin add-my-app
Steps:
apps/.template/ フォルダには、完全なアプリテンプレートが含まれています:
The apps/.template/ folder contains a complete app template:
cp -r apps/.template apps/my-new-app
cd apps/my-new-app
# ファイルを編集 / Edit files
✅ 推奨 / Recommended:
Use descriptive app names, include screenshots, explain usage in detail, add code comments
❌ 避けるべき / Avoid:
Don’t modify other apps’ files, commit large files (videos), or include personal info/API keys
SSH キーが設定されていない可能性があります。HTTPS を使用するか、SSH キーを設定してください。
SSH keys may not be configured. Use HTTPS or set up SSH keys.
最新の変更を取得してください:
Get the latest changes:
git fetch origin
git rebase origin/main
Issue を作成してお気軽にお問い合わせください:
Feel free to open an issue:
問題が発生した場合は、以下の方法でサポートを受けられます:
If you encounter problems, you can get support through:
Happy coding! 🚀