2 Commits

Author SHA1 Message Date
163e9beb51 Documention für pipenv scripts 2021-12-31 23:42:04 +01:00
6ba225bee3 Version id compliant to PEP 440 2021-12-31 23:34:42 +01:00
2 changed files with 18 additions and 1 deletions

View File

@@ -65,6 +65,21 @@ Visit: [admin](http://localhost:8000/admin) for administrative backend or
Happy developing ;-)
# Pipenv Scripts
This project comes with a bunch of convinient scripts, like:
|Script|Description|
|---|---|
|test|Runs the tests|
|server|Starts a **development** server|
|dbshell|Opens a shell session in the database|
|showmigrations|Lists all Migrations|
|makemigrations|Creates a migration|
|migrate|Applies unapplied migrations|
|build|Builds this project into a wheel file|
|createsuperuser|Creates a superuser with the username **admin** and the password **develop**. This is for development and demo instances only!
|quickstart|Runs *migrate*, *createsuperuser* and *server*|
# Installing a productive instance
Currently there are two ways to deploy the lostplaces project:

View File

@@ -6,9 +6,11 @@ from setuptools import setup, find_packages
with open('Readme.md') as f:
readme = f.read()
# Keep PEP 440 for version identification in mind
# https://www.python.org/dev/peps/pep-0440/#post-releases
setup(
name='django-lostplaces',
version='0.1.4-hotfix-31-12-21_22-18',
version='0.1.4.post1',
description='A django app to manage lost places',
author='Reverend',
author_email='reverend@reverend2048.de',