Nom Nom Admin is a content Management System for Nom Nom Web Application. Here Admin do their task for managing, controlling and Monitoring backend system.
Here tutorial for cloning this project :
- Copy .env.example file to .env on the root example.You can type copy .env.example .env if using command prompt Windows or cp .env.example .env if using terminal, Ubuntu
- Open your .env file and change the database name (DB_DATABASE) to whatever you have, username (DB_USERNAME) and password (DB_PASSWORD) field correspond to your configuration.
- Run php artisan key:generate
- Run php artisan migrate
- Run php artisan serve
- Further Explanation here
For Contributing this project follow this instruction :
-
Create new branch
#Branch Type
- feature : Adding new feature, page and component.
- fix : Fixing bug and Error.
- style : Adding new Style in CSS or Tailwind CSS.
#Branch Name
[branch_type]_[branch_name]
Example :
- feature_login
- style_card
- fix_dropdown
#Creating Branch
-git branch branch_name (example : git branch feature_login)
#Changing Branch
-git checkout branch_name (example : git checkout feature_login)
#Deleting Branch
-git branch -d branch_name (example: git branch -d feature_login)
-
Adding file from working directory to staging index
git add .
-
Check Status
git status
-
Commit File
-git commit -m "name_type:commit_message"
#Commit Message
- feature : Adding new feature, page and component.
- fix : Fixing bug and Error.
- style : Adding new Style in CSS or Tailwind CSS.
- Example :
git commit -m "dzakiy_feature: Menambahkan halaman login"
-
Push File to Branch Repository
-git push -u origin branch_name
-
Pull Request for Review and then merge to master repository.