Sign inSign up

webuilder/flask-demo

By webuilder

Updated almost 8 years ago

This is a demo

Image
0

219

webuilder/flask-demo repository overview

Flask Skeleton -

Flask starter project... https://cloud.docker.com

This is a demo

Quick Start

Basics
  1. Activate a virtualenv
  2. Install the requirements
Set Environment Variables

Update skeleton/server/config.py, and then run:

$ export APP_SETTINGS="skeleton.server.config.DevelopmentConfig"

or

$ export APP_SETTINGS="skeleton.server.config.ProductionConfig"
Create DB
$ python manage.py create_db
$ python manage.py db init
$ python manage.py db migrate
$ python manage.py create_admin
$ python manage.py create_data
Run the Application
$ python manage.py runserver

So access the application at the address http://localhost:5000/

Want to specify a different port?

$ python manage.py runserver -h 0.0.0.0 -p 8080
Testing1
$ tox

Docker

docker run -d -p 8080:5000 imooc-course/docker-cloud-demo:latest

this is a pull request test

Tag summary

Content type

Image

Digest

Size

75.3 MB

Last updated

almost 8 years ago

docker pull webuilder/flask-demo