https://github.com/hivesolutions/appier-extras
Appier on Steroids
https://github.com/hivesolutions/appier-extras
addon appier appier-extras
Last synced: about 2 months ago
JSON representation
Appier on Steroids
- Host: GitHub
- URL: https://github.com/hivesolutions/appier-extras
- Owner: hivesolutions
- Created: 2014-04-15T11:59:30.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2025-12-07T01:44:28.000Z (6 months ago)
- Last Synced: 2025-12-26T20:30:56.266Z (6 months ago)
- Topics: addon, appier, appier-extras
- Language: Python
- Homepage: http://appier-extras.hive.pt
- Size: 2.88 MB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# [](http://appier-extras.hive.pt)
**Appier on Steroids**
Appier Extras is a set of extra elements for [Appier Framework](http://appier.hive.pt).
Amongst other features, it brings an admin interface that is automatically generated
by inspecting the application models, allowing the developer to easily have a way to manage
the data and processes for an instance.
Here's how to launch a minimal app with Appier Extras:
```python
import appier
import appier_extras
class HelloApp(appier.WebApp):
def __init__(self):
appier.WebApp.__init__(self, parts=(appier_extras.AdminPart,))
HelloApp().serve()
```
Running it is just as simple:
```bash
pip install appier appier_extras
python hello.py
```
You can now go to [http://localhost:8080/admin](http://localhost:8080/admin) and login with root/root.
## Learn more
* [Models](doc/models.md) - extra model features
* [Configuration](doc/configuration.md) - how to configure Appier Extras
## License
Appier Extras is currently licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/).
## Build Automation
[](https://github.com/hivesolutions/appier-extras/actions)
[](https://coveralls.io/r/hivesolutions/appier-extras?branch=master)
[](https://pypi.python.org/pypi/appier-extras)
[](https://www.apache.org/licenses/)