This repository has been archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
FoxMaSk
committed
Aug 5, 2018
1 parent
d63006f
commit c604556
Showing
7 changed files
with
67 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION = (1, 5, 2) # PEP 386 | ||
VERSION = (1, 6, 0) # PEP 386 | ||
__version__ = ".".join([str(x) for x in VERSION]) | ||
|
||
default_app_config = 'django_th.apps.DjangoThConfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.. _installation: | ||
|
||
======== | ||
Updating | ||
======== | ||
|
||
|
||
From GitHub | ||
=========== | ||
|
||
.. code-block:: bash | ||
git pull https://github.com/push-things/django-th.git | ||
then continue by installing : | ||
|
||
.. code-block:: bash | ||
cd django-th | ||
pip install -e .[all] | ||
From Pypi | ||
========= | ||
|
||
|
||
.. code-block:: bash | ||
pip install -U django-th | ||
Database | ||
======== | ||
|
||
update the database | ||
|
||
.. code-block:: bash | ||
python manage.py migrate | ||
Start the application | ||
===================== | ||
|
||
.. code-block:: bash | ||
python manage.py runserver & | ||
Now open your browser and go to http://127.0.0.1:8000/th/ to start using the application by logged in |