mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Updated the Vagrant tools to use environment variables
This commit is contained in:
parent
857c7ac654
commit
dd3bdcb956
@ -3,6 +3,8 @@ Changelog
|
||||
|
||||
* 0.1.1 (master)
|
||||
|
||||
* Refactored the Vagrant installation process to use environment variables
|
||||
rather than asking the user to modify ``settings.py``.
|
||||
* `#44`_: Harmonise environment variable names with constant names.
|
||||
* `#60`_: Setup logging to actually use the Python native logging framework.
|
||||
* `#53`_: Fixed an annoying bug that caused ``.jpeg`` and ``.JPG`` images
|
||||
|
@ -98,27 +98,31 @@ Vagrant Method
|
||||
2. Run ``vagrant up``. An instance will start up for you. When it's ready and
|
||||
provisioned...
|
||||
3. Run ``vagrant ssh`` and once inside your new vagrant box, edit
|
||||
``/opt/paperless/src/paperless/settings.py`` and set the values for:
|
||||
* ``CONSUMPTION_DIR``: this is where your documents will be dumped to be
|
||||
consumed by Paperless.
|
||||
* ``PASSPHRASE``: this is the passphrase Paperless uses to encrypt/decrypt
|
||||
the original document. The default value attempts to source the
|
||||
passphrase from the environment, so if you don't set it to a static value
|
||||
here, you must set ``PAPERLESS_PASSPHRASE=some-secret-string`` on the
|
||||
command line whenever invoking the consumer or webserver.
|
||||
4. Initialise the database with ``/opt/paperless/src/manage.py migrate``.
|
||||
5. Still inside your vagrant box, create a user for your Paperless instance with
|
||||
``/opt/paperless/src/manage.py createsuperuser``. Follow the prompts to
|
||||
``/etc/paperless.conf`` and set the values for:
|
||||
* ``PAPERLESS_CONSUMPTION_DIR``: this is where your documents will be
|
||||
dumped to be consumed by Paperless.
|
||||
* ``PAPERLESS_PASSPHRASE``: this is the passphrase Paperless uses to
|
||||
encrypt/decrypt the original document.
|
||||
* ``PAPERLESS_SHARED_SECRET``: this is the "magic word" used when consuming
|
||||
documents from mail or via the API. If you don't use either, leaving it
|
||||
blank is just fine.
|
||||
4. Exit the vagrant box and re-enter it with ``vagrant ssh`` again. This
|
||||
updates the environment to make use of the changes you made to the config
|
||||
file.
|
||||
5. Initialise the database with ``/opt/paperless/src/manage.py migrate``.
|
||||
6. Still inside your vagrant box, create a user for your Paperless instance
|
||||
with ``/opt/paperless/src/manage.py createsuperuser``. Follow the prompts to
|
||||
create your user.
|
||||
6. Start the webserver with ``/opt/paperless/src/manage.py runserver 0.0.0.0:8000``.
|
||||
You should now be able to visit your (empty) `Paperless webserver`_ at
|
||||
``172.28.128.4:8000``. You can login with the user/pass you created in #5.
|
||||
7. In a separate window, run ``vagrant ssh`` again, but this time once inside
|
||||
7. Start the webserver with
|
||||
``/opt/paperless/src/manage.py runserver 0.0.0.0:8000``. You should now be
|
||||
able to visit your (empty) `Paperless webserver`_ at ``172.28.128.4:8000``.
|
||||
You can login with the user/pass you created in #6.
|
||||
8. In a separate window, run ``vagrant ssh`` again, but this time once inside
|
||||
your vagrant instance, you should start the consumer script with
|
||||
``/opt/paperless/src/manage.py document_consumer``.
|
||||
8. Scan something. Put it in the ``CONSUMPTION_DIR``.
|
||||
9. Wait a few minutes
|
||||
10. Visit the document list on your webserver, and it should be there, indexed
|
||||
9. Scan something. Put it in the ``CONSUMPTION_DIR``.
|
||||
10. Wait a few minutes
|
||||
11. Visit the document list on your webserver, and it should be there, indexed
|
||||
and downloadable.
|
||||
|
||||
.. _Vagrant: https://vagrantup.com/
|
||||
@ -158,11 +162,11 @@ Docker Method
|
||||
|
||||
3. Create a copy of ``docker-compose.yml.example`` as ``docker-compose.yml`` and
|
||||
a copy of ``docker-compose.env.example`` as ``docker-compose.env``. You'll be
|
||||
editing both these files: taking a copy ensures that you can ``git pull`` to
|
||||
receive updates without risking merge conflicts with your modified versions
|
||||
editing both these files: taking a copy ensures that you can ``git pull`` to
|
||||
receive updates without risking merge conflicts with your modified versions
|
||||
of the configuration files.
|
||||
4. Modify ``docker-compose.yml`` to your preferences, following the instructions
|
||||
in comments in the file. The only change that is a hard requirement is to
|
||||
in comments in the file. The only change that is a hard requirement is to
|
||||
specify where the consumption directory should mount.
|
||||
5. Modify ``docker-compose.env`` and adapt the following environment variables:
|
||||
|
||||
|
@ -1,13 +1,55 @@
|
||||
#!/bin/bash
|
||||
|
||||
# install packages
|
||||
sudo apt-get update
|
||||
sudo apt-get build-dep -y python-imaging
|
||||
sudo apt-get install -y libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev
|
||||
sudo apt-get install -y build-essential python3-dev python3-pip sqlite3 libsqlite3-dev git
|
||||
sudo apt-get install -y tesseract-ocr tesseract-ocr-eng imagemagick
|
||||
# Install packages
|
||||
apt-get update
|
||||
apt-get build-dep -y python-imaging
|
||||
apt-get install -y libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev
|
||||
apt-get install -y build-essential python3-dev python3-pip sqlite3 libsqlite3-dev git
|
||||
apt-get install -y tesseract-ocr tesseract-ocr-eng imagemagick
|
||||
|
||||
# setup python project
|
||||
pushd /opt/paperless
|
||||
sudo pip3 install -r requirements.txt
|
||||
popd
|
||||
# Python dependencies
|
||||
pip3 install -r /opt/paperless/requirements.txt
|
||||
|
||||
# Create the environment file
|
||||
echo "
|
||||
# This where your documents should go to be consumed. Make sure that it exists
|
||||
# before you start Paperless.
|
||||
export PAPERLESS_CONSUMPTION_DIR='/home/vagrant/consumption'
|
||||
|
||||
# This is the secret passphrase used to encrypt the documents once they have
|
||||
# been consumed. Change it to whatever you like, but you shouldn't change it
|
||||
# after it has been used to consume a document or you won't be able to read
|
||||
# that document again.
|
||||
export PAPERLESS_PASSPHRASE='secret'
|
||||
|
||||
# This is the secret string used to verify PDFs sent by mail or consumed via
|
||||
# the API. If you don't plan to use either of these, you can safely leave it
|
||||
# blank
|
||||
export PAPERLESS_SHARED_SECRET=''
|
||||
" > /tmp/paperless.conf
|
||||
chmod 0640 /tmp/paperless.conf
|
||||
chown root:vagrant /tmp/paperless.conf
|
||||
mv /tmp/paperless.conf /etc/
|
||||
|
||||
# Create the consumption directory
|
||||
mkdir /home/vagrant/consumption
|
||||
chown vagrant:vagrant /home/vagrant/consumption
|
||||
|
||||
# Create environment wrapper
|
||||
echo "
|
||||
|
||||
|
||||
# Setup the paperless environment variables
|
||||
. /etc/paperless.conf
|
||||
" >> /home/vagrant/.bashrc
|
||||
|
||||
echo "
|
||||
|
||||
|
||||
Now follow the remaining steps in the Vagrant section of the setup
|
||||
documentation to complete the process:
|
||||
|
||||
http://paperless.readthedocs.org/en/latest/setup.html#setup-installation-vagrant
|
||||
|
||||
|
||||
"
|
||||
|
Loading…
x
Reference in New Issue
Block a user