A Django-based web application to help you create and showcase your digital resume. This project enables users to build their resume dynamically and display it in a professional format.
- Create, edit, and update resume information.
- Store data in a database for persistence.
- User-friendly interface for resume customization.
- Export resume to PDF (if implemented).
- Easy deployment with Django.
Ensure you have Python installed (version 3.6+ recommended). Install dependencies using:
pip install -r requirements.txtgit clone https://github.com/bobby-didcoding/resume_app.git
cd resume_apppython -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activatepip install -r requirements.txtpython manage.py migratepython manage.py createsuperuserpython manage.py runserverhttp://127.0.0.1:8000/To deploy the application, configure the following:
- Set up a production database (e.g., PostgreSQL).
- Configure environment variables for settings.
- Use a production-ready WSGI server (e.g., Gunicorn).
- Set up a web server (e.g., Nginx).
- Use Docker (if needed) for containerized deployment.