This project is a simple blog website written in Python, using the Django web framework and its generics/class-based views.
To run this project, you will need to have the following installed on your local machine:
Python 3.10.5
Clone the repository to your local machine:
git clone https://github.com/theveloper-pl/PyBlogger.git
Create virtual env
python -m venv env
Activate it
source env/Scripts/activate
Install requirements
pip install -r PyBlogger/requirements.txt
Navigate to the project directory:
cd PyBlogger/blogger
Create .env file, use .env-sample as source
cp .env-sample .env
Run the Website:
cd ..
python manage.py runserver
The website will be running on localhost:8000.
To view a specific post, click on the title of the post on the homepage. This will take you to the post's detail page.
We welcome contributions to this project! If you have any ideas for improvements or have found a bug, please open an issue or submit a pull request.
This project is licensed under the MIT License.