Guest User

Untitled

a guest
Jul 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $ pip install --upgrade lore
  2. $ cd my_app
  3.  
  4. # Python 2 or 3, whatever
  5. $ echo 'python-3.7.0' > runtime.txt
  6.  
  7. # Lore has no other dependencies
  8. $ echo 'lore' >> requirements.txt
  9.  
  10. # A Python module is required to match your App name
  11. $ mkdir -p my_app && echo 'import lore' >> my_app/__init__.py
  12.  
  13. # Build and cache your virtualenv
  14. $ lore install
  15.  
  16. # Ship it!
  17. $ git commit -a -m 'deep freeze dependencies'
  18. $ git push
Add Comment
Please, Sign In to add comment