Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/girardinsamuel/masonite-package-sync
Easily update your Masonite package with latest Masonite default project template.
https://github.com/girardinsamuel/masonite-package-sync
Last synced: about 1 month ago
JSON representation
Easily update your Masonite package with latest Masonite default project template.
- Host: GitHub
- URL: https://github.com/girardinsamuel/masonite-package-sync
- Owner: girardinsamuel
- License: mit
- Created: 2021-10-12T13:53:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-24T10:45:47.000Z (almost 3 years ago)
- Last Synced: 2024-11-19T17:16:27.414Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Masonite package sync
Update a masonite package with latest project template files.
It's useful when you maintain a package to update the project template used for example in tests/integrations/.```
pip install masonite-package-sync
```Pull the default Masonite project template into the current directory
```
python masonite-package pull
``````
python masonite-package pull --repo johndoe/other-project --branch develop
``````
python masonite-package pull --directory other/dir/test/
```If you want to update the test project inside your Masonite package do :
```
python masonite-package pull --directory tests/integrations/
```It will replace the project and update paths to work !