Skip to main content

A lightweight Django app to create Web-based resumes.

Project description

=====
django-resumator
=====

Need a web resume? You came to the right place! django-resumator is a lightwight app to create web-based resumes dedicated to people in computer science/engineering. it's built to be lightweight, simple, and organized enough to be resuable by other people, and easily configured for your needs.


Quick start
-----------

1. Add "resumator" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = (
...
'resumator',
)

2. Add the following to your setting.py::

MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/'

2. Include the resumator URLconf in your project urls.py and add MEDIA URL to urlpatterns like this::

from django.conf import settings
from django.conf.urls.static import static

urlpatterns = [
...
url(r'^', include('resumator.urls')),
...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)


3. Run `python manage.py migrate` to create the resumator models.

4. Start the development server and visit http://127.0.0.1:8000/admin/
to modify your basic information model and edit your resume (you'll need the Admin app enabled).

5. Visit http://127.0.0.1:8000/resume/ to see your resume.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-resumator-1.0.tar.gz (14.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page