Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/girardinsamuel/masonite-demo-package
Demo package to show Masonite cookiecutter scaffolding result
https://github.com/girardinsamuel/masonite-demo-package
masonite masonite-package python
Last synced: about 1 month ago
JSON representation
Demo package to show Masonite cookiecutter scaffolding result
- Host: GitHub
- URL: https://github.com/girardinsamuel/masonite-demo-package
- Owner: girardinsamuel
- License: mit
- Created: 2020-09-26T10:49:41.000Z (over 4 years ago)
- Default Branch: 4.0
- Last Pushed: 2023-09-11T11:48:20.000Z (over 1 year ago)
- Last Synced: 2024-10-15T15:34:28.960Z (3 months ago)
- Topics: masonite, masonite-package, python
- Language: Python
- Homepage:
- Size: 118 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Demo Package
## Introduction
Demo package to show Masonite package generator.
## Features
- _Add your package main features here_
- _and here_## Official Masonite Documentation
New to Masonite ? Please first read the [Official Documentation](https://docs.masoniteproject.com/).
Masonite strives to have extremely comprehensive documentation 😃. It would be wise to go through the tutorials there.
If you find any discrepencies or anything that doesn't make sense, be sure to comment directly on the documentation to start a discussion!Have questions or want to talk? Be sure to join the [Masonite Discord Community](https://discord.gg/TwKeFahmPZ)!
## Installation
```bash
pip install masonite-demo-package
```## Configuration
Add DemoPackageProvider to your project in `config/providers.py`:
```python
# config/providers.py
# ...
from demo_package import DemoPackageProvider# ...
PROVIDERS = [
# ...
# Third Party Providers
DemoPackageProvider,
# ...
]
```Then you can publish the package resources (if needed) by doing:
```bash
python craft package:publish demo-package
```## Usage
_Explain how to use your package_
## Contributing
Please read the [Contributing Documentation](CONTRIBUTING.md) here.
## Maintainers
- [Samuel Girardin](https://www.github.com/girardinsamuel)
## License
Demo Package is open-sourced software licensed under the [MIT license](LICENSE).