sparckles / starfyre

A reactive, WASM based SSR Python Web Framework for Front-End Applications
http://sparckles.cloud/starfyre/
BSD 2-Clause "Simplified" License
463 stars 19 forks source link

Error while creating new app #144

Open suatatan opened 4 months ago

suatatan commented 4 months ago

Here is the error

(starfyre-py3.11) C:\Users\SuatAtan\Downloads\starfyre\starfyre\test_application>python -m starfyre --create='appx'
Cloning into ''appx''...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
aniketkumar7 commented 4 months ago

The error message indicates that there's an issue with accessing the Git repository using SSH keys.

  1. Check if you have generated SSH keys on your machine. If not, you can generate them using the following command:

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

  1. Add Your Public Key to GitHub: After generating the key pair, add the public key (id_rsa.pub) to your GitHub account via the website.

  2. Verify the Repository URL

  3. Restart Your Command Line and Retry Cloning