This is the base project for the SteamaCo Django resume builder assessment.
- Install
python(version 2),pip, andvirtualenvfor your platform. - Clone this repository.
- Create a virtual environment in the repository's base directory.
envhas 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/.
python manage.py runserver
This repository follows the PEP8 standard. pycodestyle apps/ should produce no warnings.