Initial commit

This commit is contained in:
2023-05-15 21:02:21 -07:00
commit 37a0247acc
4 changed files with 99 additions and 0 deletions

16
README.md Normal file
View File

@@ -0,0 +1,16 @@
# URL Shortener
There are many; this is mine.
## Bundling for upload
Create a virtual environment
python -m venv venv
source venv/bin/activate
Install dependencies
python -m pip install -r requirements.txt
Zip it all up
cd venv/lib/python3.10/site-packages
zip -r ../../../../urlshorten.zip .
cd ../../../../
zip -g urlshorten.zip urlshorten.py