We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Similar to how Django's manage.py works.
manage.py
I propose the following features:
add.sh convert to -> python manage.py add
add.sh
python manage.py add
collect.sh convert to -> python manage.py collect
collect.sh
python manage.py collect
Run flask app -> python manage.py run
python manage.py run
Run Tkinter app -> python manage.py tkrun
python manage.py tkrun
The text was updated successfully, but these errors were encountered:
add.sh convert to -> python manage.py update-meme-types
python manage.py update-meme-types
collect.py convert to -> python manage.py get-memes
collect.py
python manage.py get-memes
Run flask app -> python manage.py serve
python manage.py serve
Run Tkinter app -> python manage.py tkinter
python manage.py tkinter
Also make manage.py executable and rename it to something unrelated to Django. Add the following header too:
#!/usr/bin/env python3
This will allow executing it like: ./manage.py <args>
./manage.py <args>
Sorry, something went wrong.
No branches or pull requests
Similar to how Django's
manage.py
works.I propose the following features:
add.sh
convert to ->python manage.py add
collect.sh
convert to ->python manage.py collect
Run flask app ->
python manage.py run
Run Tkinter app ->
python manage.py tkrun
The text was updated successfully, but these errors were encountered: