PATH: //usr/lib/python3.9/site-packages
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 CHANGELOG.rst
↓
X
📄 CONTRIBUTING.md
↓
X
📁 ConfigArgParse-1.7.1.dist-info/
X
📁 Deprecated-1.2.15.dist-info/
X
📁 OpenSSL/
X
📁 PySocks-1.7.1-py3.9.egg-info/
X
📁 __pycache__/
X
📁 _distutils_hack/
X
📄 _version.py
↓
X
📁 acme/
X
📁 acme-3.1.0.dist-info/
X
📁 async_timeout/
X
📁 async_timeout-4.0.2.dist-info/
X
📁 certbot/
X
📁 certbot-3.1.0.dist-info/
X
📁 chardet/
X
📁 chardet-4.0.0.dist-info/
X
📄 configargparse.py
↓
X
📄 configobj-5.0.6-py3.9.egg-info
↓
X
📄 configobj.py
↓
X
📁 dateutil/
X
📁 deprecated/
X
📁 distro-1.5.0-py3.9.egg-info/
X
📄 distro.py
↓
X
📄 distutils-precedence.pth
↓
X
📁 dnf/
X
📁 dnf-plugins/
X
📁 dnfpluginscore/
X
📁 dns/
X
📁 dnspython-2.6.1-py3.9.egg-info/
X
📁 gi/
X
📁 html2text/
X
📁 html2text-2020.1.16-py3.9.egg-info/
X
📄 hwdata.py
↓
X
📁 idna/
X
📁 idna-2.10-py3.9.egg-info/
X
📁 importlib_metadata/
X
📁 importlib_metadata-4.12.0.dist-info/
X
📁 isc/
X
📄 isc-2.0-py3.9.egg-info
↓
X
📁 josepy/
X
📁 josepy-1.14.0.dist-info/
X
📁 packaging/
X
📁 packaging-20.9.dist-info/
X
📁 parsedatetime/
X
📁 parsedatetime-2.6-py3.9.egg-info/
X
📄 pciutils-2.3.7-py3.9.egg-info
↓
X
📁 pip/
X
📁 pip-21.3.1.dist-info/
X
📁 pkg_resources/
X
📁 ply/
X
📁 ply-3.11-py3.9.egg-info/
X
📁 procfs/
X
📁 pyOpenSSL-21.0.0-py3.9.egg-info/
X
📁 pyRFC3339-1.1.dist-info/
X
📁 pycparser/
X
📁 pycparser-2.20-py3.9.egg-info/
X
📁 pygtkcompat/
X
📁 pyinotify-0.9.6-py3.9.egg-info/
X
📄 pyinotify.py
↓
X
📁 pyparsing-2.4.7.dist-info/
X
📄 pyparsing.py
↓
X
📁 pyrfc3339/
X
📁 python_dateutil-2.9.0.post0.dist-info/
X
📁 python_linux_procfs-0.7.3-py3.9.egg-info/
X
📁 pytz/
X
📁 pytz-2021.1-py3.9.egg-info/
X
📁 pyudev/
X
📁 pyudev-0.22.0-py3.9.egg-info/
X
📁 redis/
X
📁 redis-4.3.3.dist-info/
X
📁 requests/
X
📁 requests-2.25.1.dist-info/
X
📁 rhn/
X
📄 rhnlib-2.8.6-py3.9.egg-info
↓
X
📄 seobject.py
↓
X
📁 sepolgen/
X
📁 sepolicy/
X
📁 sepolicy-3.6-py3.9.egg-info/
X
📁 setuptools/
X
📁 setuptools-53.0.0.dist-info/
X
📁 six-1.15.0.dist-info/
X
📄 six.py
↓
X
📄 socks.py
↓
X
📄 sockshandler.py
↓
X
📁 tuned/
X
📁 up2date_client/
X
📁 urllib3/
X
📁 urllib3-1.26.5-py3.9.egg-info/
X
📄 validate.py
↓
X
📁 zipp/
X
📁 zipp-3.20.1.dist-info/
X
SAVING...
BERHASIL DIUBAH!
EDITING: CONTRIBUTING.md
<!--- This file serves as an entry point for GitHub's Contributing Guidelines [1] only. GitHub doesn't render rST very well, especially in respect to internal hyperlink targets and cross-references [2]. People also tend to confuse rST and Markdown syntax. Therefore, instead of keeping the contents here (and including from rST documentation under doc/), link to the Sphinx generated docs is provided below. [1] https://github.com/blog/1184-contributing-guidelines [2] http://docutils.sourceforge.net/docs/user/rst/quickref.html#hyperlink-targets --> # Certbot Contributing Guide Hi! Welcome to the Certbot project. We look forward to collaborating with you. If you're reporting a bug in Certbot, please make sure to include: - The version of Certbot you're running. - The operating system you're running it on. - The commands you ran. - What you expected to happen, and - What actually happened. If you're a developer, we have some helpful information in our [Developer's Guide](https://certbot.eff.org/docs/contributing.html) to get you started. In particular, we recommend you read these sections - [Finding issues to work on](https://certbot.eff.org/docs/contributing.html#find-issues-to-work-on) - [Coding style](https://certbot.eff.org/docs/contributing.html#coding-style) - [Submitting a pull request](https://certbot.eff.org/docs/contributing.html#submitting-a-pull-request) # Specific instructions for Josepy ## Configure a development environment 1) Install Poetry: https://python-poetry.org/docs/#installation 2) Setup a Python virtual environment ```bash $ poetry install -E docs ``` 3) Activate the Python virtual environment ```bash # (On Linux) $ source .venv/bin/activate # (On Windows Powershell) $ .\.venv\Script\activate ``` 4) Optionally set up [pre-commit](https://pre-commit.com/) which will cause simple tests to be automatically run on your changes when you commit them ```bash $ pre-commit install ``` ## Run the tests and quality checks 1) Configure a development environment ([see above](#configure-a-development-environment)) 2) Run the tests ```bash $ tox ``` 3) You can also run specific tests ```bash $ tox -e py ``` You can get a listing of the available tests by running ```bash $ tox -l ```
SIMPAN PERUBAHAN