django-curriculum

https://badge.fury.io/py/django-curriculum.svg https://travis-ci.org/axeliodiaz/django-curriculum.svg?branch=master https://codecov.io/gh/axeliodiaz/django-curriculum/branch/master/graph/badge.svg

A simple django project to create a curriculum vitae

Documentation

The full documentation is at https://django-curriculum.readthedocs.io.

Quickstart

Install django-curriculum:

pip install django-curriculum

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'curriculum',
    ...
)

Create migrations and migrate the models:

python manage.py makemigrations curriculum
python manage.py migrate curriculum

Add the urls.py to access the API Rest:

urlpatterns = [
    ...
    url(r'^api/curriculum/', include('curriculum.urls')),
    ...
]

All API urls by default are in: http://localhost:8000/api/curriculum/

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package: