Created
          November 15, 2018 20:50 
        
      - 
      
 - 
        
Save carlos-menezes/f61473fa2ff80e9d25c9995861486544 to your computer and use it in GitHub Desktop.  
    Batch file to create a Flask directory
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | @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