https://github.com/samdoghor/myte
A versatile command-line tool designed to streamline your web development process in Python.
https://github.com/samdoghor/myte
boilerplate cli-app cli-tool command-line command-line-tool frameworks python scaffolding-framework typer
Last synced: 5 months ago
JSON representation
A versatile command-line tool designed to streamline your web development process in Python.
- Host: GitHub
- URL: https://github.com/samdoghor/myte
- Owner: samdoghor
- License: mit
- Created: 2023-09-03T10:15:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-29T22:49:56.000Z (about 2 years ago)
- Last Synced: 2025-09-28T17:30:35.439Z (9 months ago)
- Topics: boilerplate, cli-app, cli-tool, command-line, command-line-tool, frameworks, python, scaffolding-framework, typer
- Language: Python
- Homepage: https://myte.samdoghor.tech
- Size: 1.03 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.Docker.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`.
Your application will be available at .
### Deploying your application to the cloud
First, build your image, e.g.: `docker build -t myapp .`.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp .`.
Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharing/)
docs for more detail on building and pushing.
### References
* [Docker's Python guide](https://docs.docker.com/language/python/)