Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.07 KB

shortcuts.md

File metadata and controls

30 lines (23 loc) · 1.07 KB

Shortcuts

Here are a few Swiftbrowser related shortcuts that may make development more convenient. Add these to your ~/.bash_profile file (for Mac OS) or ~/.bashrc (for Linux distributions)

Depending on how you organize your files, a quick shortcut to cd into your swiftbrowser environment will be convenient.

alias swiftbrowser="cd <asbolute-path-to-your-virtual-env>"

If you're using a virtual environment, this is a handy way to launch the swiftbrowser within the environment. If you're not using a virtual environemnt, you can remove the middle part.

alias runsb="swiftbrowser && source bin/activate && python django-swiftbrowser/myproj/manage.py runserver"

Quick launch of PDB

alias pdbsb="swiftbrowser && source bin/activate && python -m pdb django-swiftbrowser/myproj/manage.py runserver --nothreading --noreload"

Lastly if you can't remember these shortcuts, a shortcut to list your shortcuts:

For Mac OS

alias shortcuts="cat ~/.bash_profile"

For Linux distrbutions

alias shortcuts="cat ~/.bashrc"