Skip to content

Commit

Permalink
Amélioration de la doc
Browse files Browse the repository at this point in the history
  • Loading branch information
A-312 committed Aug 6, 2019
1 parent db11b27 commit 74c5b3c
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 4 deletions.
37 changes: 37 additions & 0 deletions doc/source/install/install-windows.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,43 @@ Cas numéro 1 : windows 10 et sous-système linux
Cas numéro 2 : fonctionnement sur windows lui-même
==================================================

Installation automatique
---------------------

Commencez par `téléchargez et installez Python 3.6 <https://www.python.org/downloads/release/python-368/>`_ ([lien direct](https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe)).

Ensuite, ouvrez la console de Windows et faites :

.. sourcecode:: batch

cd /ton/path/zds-site/
powershell .\scripts\win\install_zds.ps1 +full


Une fois l'installation fini, utilisez la **console PowerShell** et chargez l'environnement virtuel de votre espace de développement avec :

.. sourcecode:: powershell

. .\zdsenv\Scripts\activate.ps1

Vous devriez obtenir :

.. sourcecode:: bat

(zdsenv)PS C:\dev\zestedesavoir\

Vous pouvez finalement lancer ZdS:

- ``cd zmd/node_modules/zmarkdown && npm run server`` `pour zmarkdown <extra-zmd.html#utilisation>`_ ;
- ``python manage.py runserver``

2) Démarrez ZMD : `pm2 start -f zmd/node_modules/zmarkdown/server/index.js -i 1`
3) Démarrez Django : `python manage.py runserver`


Installation manuelle
---------------------

- Téléchargez `zlib <http://gnuwin32.sourceforge.net/downlinks/zlib.php>`_ (prérequis pour la bibliothèque ``Pillow``)
- Téléchargez et installez les outils suivants :
- `PowerShell 3.0+ <http://www.microsoft.com/fr-fr/download/details.aspx?id=40855>`_. Uniquement pour les PC tournant sous Windows 7 ou antérieur (installé par défaut avec Windows depuis).
Expand Down
8 changes: 4 additions & 4 deletions scripts/win/install_zds.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ if (-not (_in "-data") -and ((_in "+data") -or (_in "+base") -or (_in "+full")))

PrintInfo "Done. "

$text="You can now run instance with 'pm2 start -f zmd/node_modules/zmarkdown/server/index.js -i 1', and then,"
$text="$text 'python manage.py runserver'"

Write-Output $text | green
Write-Output "You can now run instance, start powershell console and run :" | green
Write-Output "1) Load virtualenv: '. .\zdsenv\Scripts\activate.ps1'" | green
Write-Output "2) Start zmd: 'pm2 start -f zmd/node_modules/zmarkdown/server/index.js -i 1'" | green
Write-Output "3) Start django: 'python manage.py runserver'" | green

0 comments on commit 74c5b3c

Please sign in to comment.