kopia lustrzana https://github.com/jedie/PyInventory
rodzic
317c616656
commit
721b784549
|
@ -51,7 +51,7 @@ There exists these kind of installation/usage:
|
|||
|
||||
* local development installation using poetry
|
||||
* production use with docker-compose on a root server
|
||||
* Install as [[https://yunohost.org|YunoHost]] App via [[https://github.com/jedie/pyinventory_ynh|yinventory_ynh]]
|
||||
* Install as [[https://yunohost.org|YunoHost]] App via [[https://github.com/YunoHost-Apps/pyinventory_ynh|pyinventory_ynh]]
|
||||
|
||||
This README contains only the information about local development installation.
|
||||
|
||||
|
@ -187,10 +187,13 @@ Files are separated into: "/src/" and "/development/"
|
|||
|
||||
== history
|
||||
|
||||
* [[https://github.com/jedie/PyInventory/compare/v0.8.0...master|compare v0.8.0...master]] **dev**
|
||||
* [[https://github.com/jedie/PyInventory/compare/v0.8.1...master|compare v0.8.1...master]] **dev**
|
||||
** tbc
|
||||
* [[https://github.com/jedie/PyInventory/compare/v0.8.0...v0.8.1|v0.8.1 - 09.12.2020]]
|
||||
** Fix migration: Don't create "/media/migrate.log" if there is nothing to migrate
|
||||
** Fix admin redirect by using the url pattern name
|
||||
** tbc
|
||||
** YunoHost app package created
|
||||
** update requirements
|
||||
* [[https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0|v0.8.0 - 06.12.2020]]
|
||||
** Outsource the "MEDIA file serve" part into [[https://github.com/jedie/django-tools/tree/master/django_tools/serve_media_app#readme|django.tools.serve_media_app]]
|
||||
* [[https://github.com/jedie/PyInventory/compare/v0.6.0...v0.7.0|v0.7.0 - 23.11.2020]]
|
||||
|
|
14
README.rst
14
README.rst
|
@ -96,7 +96,7 @@ There exists these kind of installation/usage:
|
|||
|
||||
* production use with docker-compose on a root server
|
||||
|
||||
* Install as `YunoHost <https://yunohost.org>`_ App via `yinventory_ynh <https://github.com/jedie/pyinventory_ynh>`_
|
||||
* Install as `YunoHost <https://yunohost.org>`_ App via `pyinventory_ynh <https://github.com/YunoHost-Apps/pyinventory_ynh>`_
|
||||
|
||||
This README contains only the information about local development installation.
|
||||
|
||||
|
@ -254,13 +254,19 @@ Files are separated into: "/src/" and "/development/"
|
|||
history
|
||||
-------
|
||||
|
||||
* `compare v0.8.0...master <https://github.com/jedie/PyInventory/compare/v0.8.0...master>`_ **dev**
|
||||
* `compare v0.8.1...master <https://github.com/jedie/PyInventory/compare/v0.8.1...master>`_ **dev**
|
||||
|
||||
* tbc
|
||||
|
||||
* `v0.8.1 - 09.12.2020 <https://github.com/jedie/PyInventory/compare/v0.8.0...v0.8.1>`_
|
||||
|
||||
* Fix migration: Don't create "/media/migrate.log" if there is nothing to migrate
|
||||
|
||||
* Fix admin redirect by using the url pattern name
|
||||
|
||||
* tbc
|
||||
* YunoHost app package created
|
||||
|
||||
* update requirements
|
||||
|
||||
* `v0.8.0 - 06.12.2020 <https://github.com/jedie/PyInventory/compare/v0.7.0...v0.8.0>`_
|
||||
|
||||
|
@ -385,4 +391,4 @@ donation
|
|||
|
||||
------------
|
||||
|
||||
``Note: this file is generated from README.creole 2020-12-09 11:11:42 with "python-creole"``
|
||||
``Note: this file is generated from README.creole 2020-12-09 20:14:54 with "python-creole"``
|
|
@ -1,12 +1,15 @@
|
|||
= PyInventory - deployment instruction
|
||||
|
||||
Web based management to catalog things including state and location etc. using Python/Django.
|
||||
Install PyInventory on a rood server via docker-compose.
|
||||
|
||||
|
||||
**Note:**
|
||||
|
||||
* PyInventory is also available as [[https://yunohost.org|YunoHost]] App via [[https://github.com/YunoHost-Apps/pyinventory_ynh|pyinventory_ynh]]
|
||||
* This README contains only the instruction to install PyInventory on a root server.
|
||||
* Read [[https://github.com/jedie/PyInventory/tree/master#readme|the main README]] for local development installation.
|
||||
|
||||
|
||||
Pull requests welcome!
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
export PROJECT_NAME=pyinventory
|
||||
export PROJECT_PACKAGE_NAME=pyinventory
|
||||
export PROJECT_VERSION=0.8.1rc3
|
||||
export PROJECT_VERSION=0.8.1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "PyInventory"
|
||||
version = "0.8.1rc3"
|
||||
version = "0.8.1"
|
||||
description = "Web based management to catalog things including state and location etc. using Python/Django."
|
||||
authors = ["JensDiemer <git@jensdiemer.de>"]
|
||||
packages = [
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
:license: GNU GPL v3 or above, see LICENSE for more details.
|
||||
"""
|
||||
|
||||
__version__ = "0.8.1rc3"
|
||||
__version__ = "0.8.1"
|
||||
|
||||
# https://docs.djangoproject.com/en/2.0/ref/applications/#configuring-applications-ref
|
||||
default_app_config = "inventory.apps.InventoryConfig"
|
||||
|
|
Ładowanie…
Reference in New Issue