Giter VIP home page Giter VIP logo

flask-blog's Introduction

Flask Blog

This is a simple blog web application built using Flask, a lightweight web framework in Python.

Features

  • User authentication (register, login, logout)
  • Create, edit, and delete blog posts
  • View blog posts by category or author
  • Responsive design using Bootstrap

Technologies Used

  • Python
  • Flask
  • SQLAlchemy (for database ORM)
  • HTML/CSS (Bootstrap for styling)
  • SQLite (or other relational database)
  • WTForms (for form validation)
  • Flask-Bcrypt (for password hashing)
  • Flask-Login (for user session management)

Installation

Clone the repository:

git clone https://github.com/MineNique/flask-blog.git
cd flask-blog

Create a virtual environment (optional but recommended):

python3 -m venv venv
source venv/bin/activate  # On Windows, use `venv\Scripts\activate`

Install dependencies:

pip install -r requirements.txt

Set up environment variables (create a .env file in the root directory):

SECRET_KEY=your_secret_key
SQLALCHEMY_DATABASE_URI=sqlite:///site.db

Initialize the database and run the application:

flask db init
flask db migrate -m "Initial migration"
flask db upgrade
flask run

Visit http://localhost:5000 in your web browser to view the Flask blog application.

Usage

  • Register a new user account.
  • Log in with your registered account.
  • Create, edit, or delete blog posts.
  • Browse blog posts by category or author.

Contributing

Contributions are welcome! Please fork this repository and submit a pull request with your changes.

  1. Fork the repository (https://github.com/MineNique/flask-blog.git)
  2. Create your feature branch (git checkout -b feature/your-feature)
  3. Commit your changes (git commit -am 'Add your feature')
  4. Push to the branch (git push origin feature/your-feature)
  5. Open a new pull request

License

This project is licensed under the Mozilla Public License Version 2.0 - see the LICENSE file for details.

flask-blog's People

Contributors

xarcgit avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.