Geoffrey-Django/docs/source/getting_started.rst

70 lines
1.4 KiB
ReStructuredText
Raw Normal View History

2019-01-02 23:48:31 +00:00
.. _getting_started:
.. |br| raw:: html
2019-01-02 23:48:31 +00:00
<br>
2019-01-02 23:48:31 +00:00
***************
Getting Started
***************
2019-01-02 23:48:31 +00:00
Requirements
#############
Versions shown have been tested to work
2019-01-02 23:48:31 +00:00
* `Python 3.6.6`_
* `Django 2.1.2`_
* `Requests 2.20.0`_
* `simplejson 3.16.0`_
2019-01-02 23:48:31 +00:00
.. _Python 3.6.6: https://www.python.org/
.. _Django 2.1.2: https://pypi.org/project/Django/
.. _Requests 2.20.0: https://pypi.org/project/requests2/
.. _simplejson 3.16.0: https://pypi.org/project/simplejson/
2019-01-02 23:48:31 +00:00
Setup
#####
.. Note:: Geoffrey is a Django application. To install Geoffrey, you need to have a Django site already setup instructions to do that can be found `here`_
2019-01-02 23:48:31 +00:00
.. _here: https://docs.djangoproject.com/en/2.2/intro/tutorial01/
2019-01-02 23:48:31 +00:00
Clone Geoffrey
**************
In the Django project, clone import Geoffrey by cloning it
::
2019-01-02 23:48:31 +00:00
git clone https://git.etztech.xyz/ZeroHD/Geoffrey.git GeoffreyApp
2019-01-02 23:48:31 +00:00
Integrate Geoffrey Into The Django Project
******************************************
In ``settings.py`` add ``GeoffreyApp`` to ``INSTALLED_APPS``
2019-01-02 23:48:31 +00:00
Once installed, run the migrations to setup the database for the first time
::
2019-01-02 23:48:31 +00:00
python manage.py makemigrations
python manage.py migrate
2019-01-02 23:48:31 +00:00
Then add the URLs to your projects's ``urls.py``
::
path('GeoffreyApp/', include('GeoffreyApp.urls')),
2019-01-02 23:48:31 +00:00
Setup Settings
**************
To setup your ``settings.py`` for Geoffrey, checkout :ref:`django_settings`
2019-01-02 23:48:31 +00:00