IgalaDigital / Igala-Facts

Get to see and Know some real Facts about Igala πŸ”₯πŸ”₯πŸ”₯

Home Page:https://igaladigital.github.io/Igala-Facts/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Igala Facts

A web/progressive app that lets you know real and interesting facts about Igala.

There is also Google Chrome Extension which is available Here

Submit a/your Fact here

Igala Facts Demo

Contributors Guide

Prerequisites

  • Git or any equivalent Version Control System (GitKraten, GitHub Desktop e.t.c)
  • Code Editor (VsCode, Atom e.t.c)
  • Little Bash command line knowledge
  • Basic JavaScript knowledge

Getting Started

  1. If you are new to Git and Github, it is advisable you go through GitHub For Beginners before moving to the next step.

  2. Fork the Repository here

  3. Clone the forked Repository
    $ git clone https://github.com/IgalaDigital/Igala-Facts.git

  4. Enter the cloned directory
    cd Igala-Facts

  5. Open directory in your Code Editor
    code .

  6. Open the index.html file

All Facts are stored in JS file which can be found here js/app.js Facts are stored in this format

[
    {
	"author": "Ilemona",
        "quote": "Did you know that Gov Yahaya Bello is now the onu ogwu of igala land?. - Demo Fact"
    }
]

To add a new Fact this Extension; you need to add the Fact to the JS file

STEP ONE

  • Every Fact has a designated number, so check the number of the last fact before we proceed
  • You should have your fact and publisher name already
  • Facts are in this format
{
	"author": "Ilemona",
        "quote": "Did you know that Gov Yahaya Bello is now the onu ogwu of igala land?. - Demo Fact"
},
  • The last fact does not end with a , after the curly brackets }
  • Any fact before the last facts ends with a ,
  • To add your fact; first add a , to the last fact after the curly bracket }
  • Copy and paste this code after the last fact before the ]
{
	"author": "Ilemona",
        "quote": "Did you know that Gov Yahaya Bello is now the onu ogwu of igala land?. - Demo Fact"
}
  • Now edit that code snippet to show your own fact;
    (Change the number to the last number, add your Publisher name and Fact)

STEP TWO

  • Push your files
$ git add --all
$ git commit -m "commit description here"
$ git push -u origin master
  • Open a Pull Request ( What is a pull request? )
  • Add enough description of what you did, changes you made and if possible screenshots
  • Wait for Review (Your PR would be reviewed and merged if deemed fit)

Helpful Resources

If you are not a Developer and still want to add a/your Fact to this Application fill this form and it would be added.

This Guide is Open for Updates, if you feel it is not complete or you have ideas of what should be added, Follow the same format above. This file is stored in README.md Update as you deem fit and send a Pull Request.

Author

IgalaDigital

Licence

MIT

About

Get to see and Know some real Facts about Igala πŸ”₯πŸ”₯πŸ”₯

https://igaladigital.github.io/Igala-Facts/


Languages

Language:JavaScript 58.3%Language:HTML 26.2%Language:CSS 15.5%