install python dependencies
flask
flask-cors
app/__init__.py basic flask thing
install python dependencies
flask
flask-cors
app/__init__.py basic flask thing
| files=(somefile1 somefile2) | |
| path="$HOME/path/to/dir/containing/files/" | |
| for file in ${files[@]} | |
| do | |
| file_to_load=$path$file | |
| if [ -f "$file_to_load" ]; | |
| then | |
| . $file_to_load | |
| echo "loaded $file_to_load" | |
| fi |
| #!/bin/bash | |
| # | |
| # Fancy prompt | |
| # | |
| # Source this file in your .bashrc | |
| # | |
| # Configuration options: | |
| # | |
| # Set _prompt_config to an array of strings. Each string is in the |