This is a public API developed for the HNG12 Stage 0 Backend task using Django. It provides basic information such as your email, the current date and time in ISO 8601 format, and the GitHub URL of this repository.
- Clone the repository:
git clone https://github.com/Nobelwrite/info_api.git- Install dependencies:
pip install -r requirements.txt- Apply migrations to set up the database:
python manage.py migrate- Run the API locally:
python manage.py runserverGET /info/get_info
{
"email": "damilolajoseph91@gmail.com",
"current_datetime": "2025-01-30T09:30:00Z",
"github_url": "https://github.com/Nobelwrite/hng12-stage0-info-api"
}