Hello everyone! Did you wake up early today? Are you sipping your coffee, or have you started your workout? Maybe you're still in bed, enjoying a good book. Would you like to share these moments with others?
Well, here's an app that meets this need: EzBlogger. It's a platform where you can quickly and easily share your thoughts, adventures, and experiences, just like a blogger.
With EzBlogger, you can share what you're doing, your plans, experiences, regrets, and anything else that comes to mind with other blog enthusiasts, reaching a wide audience. So, join EzBlogger and start writing today!
-
Edit Profile Information: Update your personal details and preferences.
-
Create a Blog: Start a new blog post and share your thoughts.
-
Edit a Blog: Modify and refine your existing blog posts.
-
Delete a Blog: Remove any blog posts you no longer want to keep.
-
Activate and Share Blogs on the Homepage: Make your blog posts visible on the homepage and share them with a wider audience.
-
Go to the directory where the Django project is located:
cd ez-blogger
-
Create a Virtual Environment (venv):
python3 -m venv venv
-
windows:
venv\Scripts\activate
-
mac os/ linux:
source venv/bin/activate
-
-
Install Django and Requirements:
pip install -r requirements.txt
-
Implement Database Migrations:
python manage.py migrate
-
Start the Development Server:
python manage.py runserver
Once the server is up and running, you can see your Django application locally by navigating to http://127.0.0.1:8000/ in your browser.
MIT License
Copyright (c) 2024 Burkay
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.