Metadata-Version: 2.1
Name: bupap
Version: 0.1.1
Summary: 
Home-page: https://github.com/valgarf/bupap
License: AGPL-3.0-or-later
Author: valgarf
Author-email: valgarf@posteo.de
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: alembic (>=1.11.1,<2.0.0)
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
Requires-Dist: bcrypt (>=4.0.1,<5.0.0)
Requires-Dist: dependency-injector (>=4.41.0,<5.0.0)
Requires-Dist: dynaconf (>=3.1.12,<4.0.0)
Requires-Dist: itsdangerous (>=2.1.2,<3.0.0)
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
Requires-Dist: loguru (>=0.7.0,<0.8.0)
Requires-Dist: more-itertools (>=9.1.0,<10.0.0)
Requires-Dist: nicegui (>=1.2.17,<2.0.0)
Requires-Dist: python-avatars (>=1.3.1,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Requires-Dist: sqlalchemy (>=2.0.16,<3.0.0)
Requires-Dist: tzdata (>=2023.3,<2024.0)
Project-URL: Repository, https://github.com/valgarf/bupap
Description-Content-Type: text/markdown

# BUPAP
This repository is a proof of concept for a "**b**ottom **up** **a**gile **p**lanning" tool.
Currently you can only install it and browse the testdata, it is **NOT YET A USEFUL TOOL**.

# Getting Started

## Installation

You can either run the application as a simple python application or use the docker image.

### python package
You can install the python package using  
```
pip[x] install bupap
```
and run it with  
```
bupap
```

### docker

You can run a new docker container by calling
```
docker run -p 8123:80 --name bupap [-it|--detach] bupap:0.1.0
```

## First login

The first start will take a short while to create testdata. 
Afterwards you should be able to see a webpage on `http://127.0.0.1:8123`

On standard configuration you can log in using:
```
Username: admin
Password: admin
```

Passwords of all the other users are their username as well, for example you can log in using `cmarmo` / `cmarmo`.


