CV Page #20 - JWalshe86/career GitHub Wiki
Build A Digital Resume
pip install streamlit Pillow
Created a cv.css file in assets
z ~/projects/career/assets/css
CV info in
z ~/projects/career/assets/docs
app.py in root dir
- Path Settings
# --- PATH SETTINGS ----
# creates starting point of app as the current dir
current_dir = Path(__file__).parent if "__file__" in locals() else Path.cwd()
css_file = current_dir / "assets" / "css" / "cv.css"
resume_file = current_dir / "assets" / "docs" / "JohnWalsheCVpdf.pdf"
run file using
streamlit run app.py
To use streamlit's native styling option created a folder in root .streamlit & made a config.toml file Re-run streamlit to apply changes Procfile
web: sh setup.sh && streamlit run app.py
Deploy to Heroku
[Gilbert Tennors blog post on deploying Streamlit to Heroku](https://gilberttanner.com/blog/deploy..._
Didn't get greenset error when removed specific version for it in requirements.txt
Deploys to Heroku but only if deployed separately to career main app