https://github.com/miirzamiir/cvgen
A resume generator API with python, django and django rest framework.
https://github.com/miirzamiir/cvgen
django djangorestframework python
Last synced: 3 months ago
JSON representation
A resume generator API with python, django and django rest framework.
- Host: GitHub
- URL: https://github.com/miirzamiir/cvgen
- Owner: miirzamiir
- Created: 2022-04-30T15:28:07.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-20T19:18:18.000Z (10 months ago)
- Last Synced: 2025-01-24T12:11:58.674Z (5 months ago)
- Topics: django, djangorestframework, python
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cvgen
A resume generator API with python, django and django rest framework.The installation instructions are written bellow.## installation
- - -
after cloning project do these instructions step by step.
### 1- create a virtual environment and activate it.
```
python -m venv ./venv
source ./venv/bin/activate
```
### 2- create a sqlite file.
``` touch lib.sqlite3 ```
you can also use other database engines but you have to change `OnlineLibrary/settings.py` module.
### 3- install requirements.
``` pip install -r ./requirements.txt ```
### 4- run migrations.
``` python manage.py migrate```
### 5- start server and use the api.
``` python manage.py runserver ```