PaperLess is a web application that generates PDF document from HTML templates.
- Clone the project
git clone git@github.com:SiddhantTotade/PaperLess.git- Open the project in the terminal. The below command opens the project in vs-code but you can choose any editor
code .-
In the terminal type command to create a virtual environment. Prefer root directory for
venv- The below command create a virtual environment in a specific directory
python -m venv <name_of_venv>
OR- The below command create a virtual envvironment in the current directory
python -m venv . -
After creating
venv, Activate it. Go to the directory in which thevenvexists and type command
source bin/activate- Deactivate the virtual environment.
deactivate- Before installing the
requirements.txtcheck if there is something exists or not. If the command shows nothing then nothing is installed yet
pip freeze- After activating
venv, install therequirements.txt.
pip install -r requirements.txt- After enabling the
venv, run the command for creating migrations
python manage.py makemigrations- After creating the migrations of all the models, run command
python manage.py migrate- Change directory to
paperless
cd paperless- Run the django serever
python manage.py runserver- Visit this repo PaperLess-Frontend


