https://github.com/code4mk/dockman
https://github.com/code4mk/dockman
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/code4mk/dockman
- Owner: code4mk
- Created: 2024-02-03T18:09:29.000Z (almost 2 years ago)
- Default Branch: dev
- Last Pushed: 2024-07-25T20:59:46.000Z (over 1 year ago)
- Last Synced: 2025-02-19T12:55:23.778Z (10 months ago)
- Language: TypeScript
- Size: 1.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dockman
```bash
#Delete local tags.
git tag -d $(git tag -l)
#Fetch remote tags.
git fetch
#Delete remote tags.
git push origin --delete $(git tag -l) # Pushing once should be faster than multiple times
#Delete local tags.
git tag -d $(git tag -l)
```
* https://github.com/svenstaro/upload-release-action
# authorize issue
```bash
xattr -cr /Applications/dockman.app
```
# flask db migration
* https://chatgpt.com/c/4c5a0a0c-5377-4499-8723-df2996c3216b
* https://chatgpt.com/c/f3afdf1a-1ce1-4dc4-a2ff-60445573b9ec
```bash
flask db init
flask db migrate -m "Initial migration."
flask db upgrade
flask db revision --rev-id e1c9f2b4d9c7
```
* https://github.com/slab/quill/issues/1120