A Django webapp use to build a Resume. It allows the user to fill in their information and then render it in the cv template.
- Built with Python, Django, HTML, CSS, Bootstrap
- The webapp allows the user to fill in their profile , and then render it in a cv template. It allows user all over the world to build their resume without going through any stress.
- Technology Used: This webapp makes use of mostly Django. Django is a high-level Python web framework with pre-written composite codes for web development, thus easing the stress of coding on the developers. It is reassuringly secure and exceedingly scalable.
Resume Builder make use of django summernote which allows the user to customize their information in the profile form. It has some of features such as 'bold', 'unordered list', 'ordered list', 'font size', 'font family' and also 'paragraph'.
- Create a django environment
- clone the project
git clone https://github.com/Justeeee/resume_builder.git
- Enter into the directory
cd portfolio_app
- Pull any recent change from main branch
git pull origin main
- create a virtual env
- Activate the virtual env
source venv/bin/activate
- Install dependencies
pip install -r requirements.txt
- Make migration
python manage.py makemigration
ormake mig
- Migrate the project
python manage.py migrate
ormake mig
- Run local Server
python manage.py runserver
- Create superuser
python manage.py createsuperuser
ormake su
There is also admin privilege for superuser. It can be accessed by only the superuser. Passwords are hashed wich makes it more secure against threat. Only superuser can make a post.