Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 723 Bytes

File metadata and controls

25 lines (21 loc) · 723 Bytes

How to populate this folder for GitHub

Run these commands from the workspace root to copy all files:

# Copy frontend files
cp -r web/* gedamu-electronics-github/frontend/

# Copy backend files
cp server/index.js gedamu-electronics-github/backend/
cp server/db.js gedamu-electronics-github/backend/
cp -r server/middleware gedamu-electronics-github/backend/
cp -r server/routes gedamu-electronics-github/backend/
cp -r server/services gedamu-electronics-github/backend/

Then push to GitHub:

cd gedamu-electronics-github
git init
git add .
git commit -m "Initial commit — Gedamu Electronics"
git remote add origin https://github.com/YOUR_USERNAME/gedamu-electronics.git
git push -u origin main