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
#!/bin/bash | |
# First, fill in these variables with your Application Name and URL Path: | |
APPNAME="myflask" | |
URLPATH="/" | |
# Step 2 | |
# deploy the app | |
cd $HOME |
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
import os | |
for dirname, dirnames, filenames in os.walk('.'): | |
# print path to all subdirectories first. | |
for subdirname in dirnames: | |
print os.path.join(dirname, subdirname) | |
# print path to all filenames. | |
for filename in filenames: | |
print os.path.join(dirname, filename) |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<title> nav-tree — Bootstrap3 + Font Awesome </title> |
NewerOlder