Skip to content

Ru5D1mG4me/FlaskNews

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FlaskNews

A news site where anyone can share the news!

Description

A news site built using the Flask microframework.

Technologies

  • Python
  • Flask
  • WTForms
  • SQLAlchemy

How to start

  1. Clone the repository
  2. Create and activate a virtual enviroment
python -m venv venv
source venv/bin/activate
  1. Install dependencies
pip install -r requirements.txt
  1. Create an .env file and specify the database connection settings and other parameters.
DATABASE_URI=sqlite:///db.sqlite3
SECRET_KEY=YOUR_SECRET_KEY
  1. Run the flask app
flask run