This is a simple digital dynamic resume project developed using Django Framework. This project can be used by anyone who wants to show their resume a digital format.
GIT clone from GitHub
$ mkdir myResume
$ cd myResume
Then clone the E-commerce App Repo from the GitHub.
myResume $ git clone https://github.com/Shuvam77/myResume.git .
Python Enviornment
Install and activate Python virtual environments. And activate it.
myResume $ pipenv shell
myResume $ python3 -m venv venv
myResume $ source venv/bin/activate
(venv) myResume $ pip install -r requirements.txt
Start Migration
(venv) myResume $ python manage.py makemigrations
(venv) myResume $ python manage.py showmigrations
(venv) myResume $ python manage.py migrate
You can delete the current database db.sqlite3 file inside the main directory and start with clean database.
(venv) myResume $ python manage.py createsuperuser
Username: admin
Email address: admin@email.com
Password: sudo@123
(env) myResume $ python manage.py runserver