Simple CV / resume Django app. Available at: https://resumeflsb.herokuapp.com/
- clone the repo
- create a virtual environment with Python 3.8+ (Needed for Django 4.0)
- activate the virtual environment
- install dependencies
- configure instance .env
- run tests
git clone https://github.com/chicolucio/django-resume
cd django-resume
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp contrib/env-sample .env
pytest
The HTML/CSS files in this repo were adapted from this video.
- create a Heroku instance
- send config to Heroku
- define a SECRET_KEY to the instance
- set DEBUG=False
- send code to Heroku
heroku create nameyourinstance
heroku config:set SECRET_KEY='set your secret key'
heroku config:set DEBUG=False
heroku config:set ALLOWED_HOSTS=.herokuapp.com
git push heroku master --force
You can use the following function to generate your secret key:
from django.core.management.utils import get_random_secret_key
get_random_secret_key()
Sure, you can use an oneliner in your terminal:
python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
You can use the .travis.yml
to config your Travis CI. And .pyup.yml
to
config PyUp.