/pemweb-akhir

Last project for web-based app development lecture

Primary LanguageHTMLMIT LicenseMIT

pemweb-akhir

Last project for web-based app development lecture

GitHub contributors GitHub pull-requests GitHub pull-requests closed GitHub forks

Installation

  • fork this repo
  • clone from your fork
git clone https://github.com/{your_github}/pemweb-akhir.git
  • run with xampp
  • create pemweb_akhir_db database
  • open this page
http://localhost/pemweb-akhir/index.php/Migrate
  • click Yes
  • make sure it shows 006 migrated

Update

  • add my repo as upstream
git remote add upstream https://github.com/irvanrizkin/pemweb-akhir.git
  • always remember to git pull from my repo
git pull upstream master

Contribute

  • add any changes you made
git add .
  • record your changes as commit with a clear message
git commit -m "doing some things"
  • push to your repo (some credential may be required in linux)
git push
  • add pull request to my repo
  • wait for an approval
  • don't forget to git pull after accepted
git pull upstream master

Simple rules

  • double check your code
  • one feature for one commit
  • one commit for one pull request