WinterSunset95 / FreeApks

Lets learn svelte together by building a fullstack app!!

Home Page:https://free-apks.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FreeApks

Lets learn svelte and git together by building a fullstack application!! If you're new to FOSS, feel free to contribute

Website is here

Before we start

You need to make sure you have the following installed:

  1. Git (open up your terminal and type this command)
git --version
  1. Node
node --version
  1. npm
npm --version

If any of the above is not installed on your machine, please refer to the official documentations available for your system.

Setting up the project

  1. Clone this repository
git clone https://github.com/WinterSunset95/FreeApks
  1. Go into the directory
cd FreeApks
  1. Install dependencies
npm install
  1. Start the server
npm run dev --open

Before editing

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:

  1. Create your own branch
git branch YourOwnBranchNameHere
  1. Go to your branch
git checkout YourOwnBranchNameHere
  1. Write code, develop, suffer, lose brain cells
  2. Commit your code
git add -A && git commit -m "This is a commit message, it should contain information about your changes"
  1. Push to your branch
git push

I shall handle the rest

Peace

About

Lets learn svelte together by building a fullstack app!!

https://free-apks.vercel.app


Languages

Language:Svelte 73.5%Language:JavaScript 19.6%Language:HTML 7.0%