/aboutme

The source code for my personal website

Primary LanguageHTMLMIT LicenseMIT

About Me

This is the source code for my personal website.

Environment

Setup

  1. Install Python 3 and activate a virtual environment
  2. Install the project dependencies:
    $ poetry install --dev --no-root

Deploy (Local)

$ ./run.sh

Then access the app at http://localhost:5000/

Deploy (Heroku)

  1. Setup the expected files for Python
    • Generate requirements.txt
      $ poetry export --format=requirements.txt --without=dev --output=requirements.txt
      
  2. Setup Github Integration
  3. Push to the master branch
  4. Access the page from its Heroku URL

References