Skip to content

Tenor gif search web application built using flask

Notifications You must be signed in to change notification settings

ellojess/gif_search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gif Search

Tenor gif search web application built using flask as a collaboration project with @Beck-Haywood

To get up and running:

  • If you don't have pipenv, install it with brew install pipenv
  • Clone this repository, cd into it, and then run pipenv shell to active the virtual env.
  • Run pipenv install to install all the packages that the program requires to run.
  • Run the command flask run or python3 app.py to get the server up and running!

DOCKER!

Build the image

docker build -t flask-image .

Build the container

docker run -p 5000:5000 --rm --name flask-container flask-image

Remove all images with names that contain flask

docker images -a | grep "flask" | awk '{print $3}' | xargs docker rmi

Remove all containers with names that contain flask

docker ps -a | grep "flask" | awk '{print $3}' | xargs docker rmi

See what's running

docker ps --format '{{.Names}}'

About

Tenor gif search web application built using flask

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published