- General info
- Technologies
- Demo
- Setup & Installation
- Running The App
- Viewing The App
- Features
- Status
- Contact
Resume Builder is web application that allows you to quickly create a resume according to the template you selected.
- Python 3.9.x
- Django 3.2.x
- SQLite3/PostgreSQL
- Bootstrap 5
- HTML5
- CSS3
Check app demo here.
Make sure you have the latest version of Python and pip installed
Clone the repository using the following command
git clone https://github.com/Gamattowicz/Resume_Builder.gitCreate a virtual environment
python -m venv venvActive the virtual environment
.\venv\Scripts\activateInstall all the project Requirements
pip install -r requirements.txtCreate an .env file to save your environment variables in /resume_builder directory, where <secret_key_name> is your sensitive data.
<email_name> is the email you will use to send emails to users through the application and <email_password> is the password for it.
SECRET_KEY=<secret_key_name>
EMAIL_USER=<email_name>
EMAIL_PASSWORD=<email_password>Create your database
python manage.py makemigrationspython manage.py migratepython manage.py runserverGo to http://127.0.0.1:8000
- User management system

- Adding photography
- Creating resumes

- CRUD functionality to each field of the resume

- Reset password

To Do:
- Add option to download a resume
Project in progress.
Created by @Gamattowicz - feel free to contact me!