🌱 Gather: Intentional Living App Development

⚑ Step 3: Setup GitHub Repositories

Since we already discussed using two repos (gather-backend, gather-frontend), let’s get them live.

1. Create Repositories on GitHub

Go to πŸ‘‰ https://github.com/new and create:

  • gather-backend (Laravel)
  • gather-frontend (React)

2. Initialize Backend Repo

Inside C:/laragon/www/gather-backend:

git init
git add .
git commit -m "Initial Laravel setup"
git branch -M main
git remote add origin [email protected]:PatlixStudio/gather-backend.git
git push -u origin main

3. Initialize Frontend Repo

Inside C:/laragon/www/gather-frontend:

git init
git add .
git commit -m "Initial React setup"
git branch -M main
git remote add origin [email protected]:PatlixStudio/gather-frontend.git
git push -u origin main

βœ… Now both repos are live on GitHub.

You can reach PatlixStudio git-hub repos here since we will commit everything at this repos till the end of series repos might be updated while you read this steps!:

https://github.com/PatlixStudio/gather-frontend
https://github.com/PatlixStudio/gather-backend