Metadata-Version: 2.1
Name: dj-deploy-cli
Version: 0.1
Summary: Generate your Procfile, runtime.txt and requirements.txt from the CLI.
Home-page: https://github.com/LeoMbm/django-deploy-cli
Download-URL: https://github.com/LeoMbm/django-deploy-cli/archive/refs/tags/v0.1.tar.gz
Author: Leo Mbm
Author-email: leo.j.mbm@gmail.com
License: MIT
Keywords: Python,Django,CommandLine
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Django Deploy CLI
## Generate your Procfile, runtime.txt and requirements.txt from the CLI


#### Clone current version from Github
```
git clone https://github.com/LeoMbm/django-deploy-cli.git
```
#### Install dependencies
Assuming you’re in the root of your project directory, then run:
```
pip -r requirements.txt
```
#### Run the project
in dj-tools-deploy-cli/src/
```
python3 main.py
```

You can see if your package has successfully uploaded by navigating
to the URL https://pypi.org/project/<sampleproject> where `sampleproject` is the name of your project that you uploaded. 
It may take a minute or two for your project to appear on the site.
### Links
* [GitHub repository](https://github.com/LeoMbm/django-deploy-cli)
