Skip to content

podatech/fms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FMS

FMS is Forum Management System. What's covered on this system?

  1. User Registrations
  2. User Questions
  3. User Answers

Every user can post question and answer another question. For next development will be add some enhancements like user rating base on some categories.

Architecture

Simple Architecture for this project is:

Simple Architecture

Detail explanation about architecture is under the package but I'll be move to here after done!

Database Design

Database Design

  1. Each User can posting many Questions.
  2. Each Question can be answered by many Users.
  3. Every one Question may containing many Tags and every one Tag may contained by many Questions.

Best Practice

Best practice is guidelines based on design pattern and ISO.

Another source and documentation is still work on progress.

This project is implementing this technology:

Git command syntax example

Git Global Setup

git config --global user.name "Irsyad Jamal Pratama Putra"

git config --global user.email "[email protected]"

Create a new Repository

git clone [email protected]:irsyadjpratamap/fms-service.git

cd fms-service

touch README.md

git add README.md

git commit -m "add README"

git push -u origin master

Existing Folder

cd existing_folder

git init

git remote add origin [email protected]:irsyadjpratamap/fms-service.git

git add .

git commit -m "Initial commit"

git push -u origin master

Existing git Repository

cd existing_repo

git remote add origin [email protected]:irsyadjpratamap/fms-service.git

git push -u origin --all

git push -u origin --tags

Copyright © Irsyad Jamal Pratama Putra