Skip to content

Instantly share code, notes, and snippets.

@carlos-menezes
Created November 15, 2018 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlos-menezes/f61473fa2ff80e9d25c9995861486544 to your computer and use it in GitHub Desktop.
Save carlos-menezes/f61473fa2ff80e9d25c9995861486544 to your computer and use it in GitHub Desktop.
Batch file to create a Flask directory
@echo off
title Flask Directory Creator
set /p name="Enter project name: "
mkdir %name%
echo Info: Created directory %name%.
cd %name%
mkdir templates
mkdir static
echo . > app.py
cd templates
echo . > index.html
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment