This is a simple Django web application for managing a bookstore. It allows users to view a list of books and their details.
Before you begin, ensure you have met the following requirements:
- You have installed Python 3.x.
- You have installed pip.
- You have installed virtualenv.
Follow these steps to install the application:
- Clone the repository.
git clone https://github.com/princessemmaaa/bookstore.git
- Navigate to the project directory.
cd bookstore
- Create a virtual environment and activate it.
python3 -m venv venv source venv/bin/activate
- Install the required packages.
pip3 install -r requirements.txt
- Apply the migrations.
python3 manage.py migrate
- Run the development server.
python3 manage.py runserver
The application will be available at http://localhost:8000
.
Here are some of the things you can do with this application:
- View the list of books at
http://localhost:8000/books
. - View the details of a specific book at
http://localhost:8000/books/<book_id>
.
If you want to contribute to this project, please create a new issue or open a pull request.
This project is licensed under the MIT License.
If you want to contact me, you can reach me at [email protected].