https://github.com/aitumik/flasky
Flasky is a social blogging application made with love with Flask.Try it out!
https://github.com/aitumik/flasky
docker flask python3 unittest virtualenv
Last synced: 4 months ago
JSON representation
Flasky is a social blogging application made with love with Flask.Try it out!
- Host: GitHub
- URL: https://github.com/aitumik/flasky
- Owner: aitumik
- Created: 2020-01-23T22:28:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-29T15:28:25.000Z (about 1 year ago)
- Last Synced: 2025-08-14T06:41:43.483Z (11 months ago)
- Topics: docker, flask, python3, unittest, virtualenv
- Language: Python
- Homepage: https://flasky-solitary-sun-7607.fly.dev/
- Size: 915 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FlaskyBlog
FlaskyBlog is a social blogging web application made with **Flask**. It allows users to **register**,**login** and more like **posting and liking**
## Author
Nathan Kimutai[(https://github.com/aitumik)]
## Installation
If you have a linux distro then you would setup this project by following the below instructions.
1. Clone the repository to your local machine
```sh
$ git clone https://github.com/aitumik/flasky
```
2. Change the working directory to the cloned application
```bash
cd flasky
```
3. Install all the requirements
```bash
pip3 install -r requirements.txt
```
Or with docker
```bash
sudo docker-compose up -d
```
## Export the environment variables
Export the following envrironment variables for confirmation emails to be sent
```bash
export MAIL_ADMIN=
export MAIL_SENDER=
export MAIL_USERNAME=
export MAIL_PASSWORD=
```