This is a simple CRUD Diary Application built using Django that allow users to Create, Retrieve/Read, Update and Delete an entry.
The interface is as shown:
#FEATURES
- User can Add entries.
- User can Edit/Update entries.
- User can Delete entries.
- Responsive UI (Bootstrap4)
To get it running on your local machine, follow the steps below:
- Run the commands below in your terminal:
git clone https://github.com/israelvictory/Expresso.git
- change directory to diary:
cd Expresso/diary
- Install the requirements with the command below:
pip install -r requirements.txt
- Run the development server with
python manage.py runserver
- Launch your browser and navigate to:
http://127.0.0.1:8000