This is the code of my personal website. https://marcpartensky.com/
git clone https://github.com/marcpartensky/website
cd website
pip install -r requirements.txt
# or with pipenv (recommended, install pipenv with pip install pipenv)
pipenv install
./manage.py runserver
Deploy with Docker
docker run -it \
-e SECRET_KEY=$(openssl rand -base64 32) \
-p 8080:80 \
marcpartensky/website
docker run -it \
-env CERT \ # You must export a ssl certificate path
-env KEY \ # You must export a pem key path
-e SECRET_KEY=$(openssl rand -base64 32) \
-p 8443:443 \
marcpartensky/website
git clone https://github.com/marcpartensky/website
cd website
docker-compose up
docker build . -t marcpartensky/website
Build usually last 5 minutes.
author: Marc Partensky created: 8/10/2019
heroku/python
heroku/node
https://github.com/weibeld/heroku-buildpack-graphviz