/django-resume-builder

SteamaCo Django resume builder assessment

Primary LanguageHTML

django-resume-builder

This is the base project for the SteamaCo Django resume builder assessment.

Setup (Unix)

  • Install python (version 3), pip, and virtualenv for your platform.
  • Clone this repository.
  • Create a virtual environment in the repository's base directory. env has already been added to the .gitignore.
  • Install the dependencies in requirements.txt.
  • Run python manage.py migrate. This will create a local database, db.sqlite3.
  • Optional: Create a superuser using python manage.py createsuperuser. This account may be used to access the Django admin site at /admin/.

Local server

python manage.py runserver

Code style

This repository follows the PEP8 standard. pycodestyle apps/ should produce no warnings.