/my-simple-book-catalog

simple book catalog using springboot and postgresql

Primary LanguageJava

Environment Requirement

  1. OS : Windows 10, MacOS, Linux Any Distro
  2. Java -> OpenJDK 11 LTS https://developers.redhat.com/products/openjdk/download https://adoptopenjdk.net/
  3. Build Tools -> Maven https://maven.apache.org/download.cgi
  4. IDE -> Intelij IDEA, Netbeans, eclipse, VSCode, Spring Tool Suite https://spring.io/tools
  5. Database -> PostgreSQL 12 https://www.postgresql.org/download/
  6. SCM (Source Code Management / Versioning Control Management) -> Git https://git-scm.com/downloads

Episode 01

  • Setup Environment
  • Create Remote Repository at Github
  • Create a new issue at Github

Video

IMAGE ALT TEXT HERE

Episode 02

Brief Introduction about Git

  • Git is distributed Versioning Control Management
    • Local Repository : Repository on Local Computer
      • create empty repository : git init. default use master branch
      • create new branch : git checkout -b branchname
      • add to staging (select files which plan to commit): git add file
      • commit staging to local repository : git commit -m "message to commit"
    • Remote Repository : Repository on Git Server