Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnbywater/albert_demo
https://github.com/johnbywater/albert_demo
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/johnbywater/albert_demo
- Owner: johnbywater
- License: bsd-3-clause
- Created: 2022-02-21T01:16:39.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-21T01:23:25.000Z (almost 3 years ago)
- Last Synced: 2024-10-14T23:08:52.941Z (3 months ago)
- Language: Python
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Welcome to albert_demo
This repo demonstrates how an event processing policy can be implemented on an application class.
## Developers
After cloning the repository, you can set up a virtual environment and
install dependencies by running the following command in the root
folder.$ make install
The ``make install`` command uses the build tool Poetry to create a dedicated
Python virtual environment for this project, and installs popular development
dependencies such as Black, isort and pytest.Add tests in `./tests`. Add code in `./albert_demo`.
Run tests.
$ make test
Check the formatting of the code.
$ make lint
Reformat the code.
$ make fmt
Add dependencies in `pyproject.toml` and then update installed packages.
$ make update-packages