The project has one application books
that has two models Author
and Book
with a relationship one to many (an Auther
has many Books
)
The app allows to add
, edit
or delete
Authors
and Books
- Home page that displays the books
- Book details page that displays a book details
- Author details that displays a specific author books
- Book form page that allows to add or edit a book
git clone https://github.com/AhmedHafez13/ITI-Book-Store-Django.git
cd ITI-Book-Store-Django
python -m venv venv
source venv/Scripts/activate
pip install -r requirements.txt
python manage.py runserver
Or using git-bash in windows
winpty python manage.py runserver