Skip to content

jq6l43d1/test-flask-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a test Flask application!

To run this directly on your machine:

# Create virtualenv and active
python3 -m venv venv
source venv/bin/activate

# Install requirements
pip install -r requirements.txt

# Run the application
FLASK_APP=app/main.py flask run

# You can view the webpage at http://127.0.0.1:5000/

To run this in a docker container:

docker build -t test-flask-app .
docker run --name test-flask-app -p 80:80 test-flask-app

# You can view the webpage at http://127.0.0.1/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 81.8%
  • Dockerfile 18.2%