Lets learn svelte and git together by building a fullstack application!! If you're new to FOSS, feel free to contribute
You need to make sure you have the following installed:
git --version
node --version
npm --version
git clone https://github.com/WinterSunset95/FreeApks
cd FreeApks
npm install
npm run dev --open
Before you start making changes to the codebase, make sure you are on your own branch. This is to avoid conflicting code across multiple programmers. Do not - under any circumstances - push to the main branch. Contributors will be assigned their own branches to work on. You will commit and push to your own branch, after which the owner will review and merge the code.
Step by step guide:
git branch YourOwnBranchNameHere
git checkout YourOwnBranchNameHere
git add -A && git commit -m "This is a commit message, it should contain information about your changes"
git push