Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/girardinsamuel/masonite-form-builder
https://github.com/girardinsamuel/masonite-form-builder
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/girardinsamuel/masonite-form-builder
- Owner: girardinsamuel
- License: mit
- Created: 2022-01-24T11:01:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-04T23:11:32.000Z (over 1 year ago)
- Last Synced: 2024-10-15T15:34:28.555Z (3 months ago)
- Language: Python
- Size: 647 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
# Masonite Form Builder
## Introduction
Quickly build quality forms for your dashboards
## 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!Also be sure to join the [Slack channel](http://slack.masoniteproject.com/)!
## Installation
```bash
pip install masonite-form-builder
```## Configuration
Add FormBuilderProvider to your project in `config/providers.py`:
```python
# config/providers.py
# ...
from form_builder import FormBuilderProvider# ...
PROVIDERS = [
# ...
# Third Party Providers
FormBuilderProvider,
# ...
]
```Then you can publish the package resources (if needed) by doing:
```bash
python craft package:publish form-builder
```## 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
Masonite Form Builder is open-sourced software licensed under the [MIT license](LICENSE).