Loading repository data…
Loading repository data…
Im-gkira / repository
A simple microblogging web app written in Python and Flask.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Microblog is a simple microblogging web application with minimalistic user interface. The sole purpose of this project is to learn and get familiar with flask.
These instructions will give you a copy of the project up and running on your local machine for development and testing purposes.
Requirements for the software and other tools to build, test and push
First of all clone this repo locally using git.
git clone https://github.com/Im-gkira/Microblog.git
Ensure Docker is installed and running in your local system.-
docker version
Go to the root folder of the application and build docker container image using-
docker build -t microblog:latest .
Now we can start a docker container using docker run-
docker run --name microblog -d -p 8000:5000 --rm microblog:latest
To run the unit tests designed to check the database queries. Run-
python tests.py