KO
|
EN
gitlite โ search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
docker-cloud-flask-demo
โ 33
Open GitHub โ
No description available.
Download README (.md)
Explore Similar Repositories
falcon-celery
:
Example of how to handle background processes with Falcon, Celery, and Docker
instapy-gender-classification
:
๐ Classification helper for sex classification feature of InstaPy
sndml3
:
ServiceNow Data Mart Loader: an application to load SQL databases from ServiceNow
SAR-raw-data-simulator
:
SAR raw data acquistion simulator
fastify-blipp
:
No description available.
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
docker-cloud-flask-demo
?
Download (.md)
# Flask Skeleton - Flask starter project... https://cloud.docker.com this is a demo ## Quick Start ### Basics 1. Activate a virtualenv 1. Install the requirements ### Set Environment Variables Update *skeleton/server/config.py*, and then run: ```sh $ export APP_SETTINGS="skeleton.server.config.DevelopmentConfig" ``` or ```sh $ export APP_SETTINGS="skeleton.server.config.ProductionConfig" ``` ### Create DB ```sh $ 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 ```sh $ python manage.py runserver ``` So access the application at the address [http://localhost:5000/](http://localhost:5000/) > Want to specify a different port? > ```sh > $ 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 this is a pull request test2