1
0
Fork 0

Update repo references.

This commit is contained in:
Amjith Ramanujam 2015-04-18 22:54:58 -07:00
parent 09abde0ce6
commit 508b2eefbe
5 changed files with 11 additions and 11 deletions

View File

@ -6,7 +6,7 @@ GitHub Workflow
------------ ------------
If you're interested in contributing to pgcli, first of all my heart felt If you're interested in contributing to pgcli, first of all my heart felt
thanks. `Fork the project <https://github.com/amjith/pgcli>`_ in github. Then thanks. `Fork the project <https://github.com/dbcli/pgcli>`_ in github. Then
clone your fork into your computer (``git clone <url-for-your-fork>``). Make clone your fork into your computer (``git clone <url-for-your-fork>``). Make
the changes and create the commits in your local machine. Then push those the changes and create the commits in your local machine. Then push those
changes to your fork. Then click on the pull request icon on github and create changes to your fork. Then click on the pull request icon on github and create
@ -20,7 +20,7 @@ repo.
:: ::
$ git remote add upstream git@github.com:amjith/pgcli.git $ git remote add upstream git@github.com:dbcli/pgcli.git
Once the 'upstream' end point is added you can then periodically do a ``git Once the 'upstream' end point is added you can then periodically do a ``git
pull upstream master`` to update your local copy and then do a ``git push pull upstream master`` to update your local copy and then do a ``git push

View File

@ -26,7 +26,7 @@ If you already know how to install python packages, then you can simply do:
If you don't know how to install python packages, please check the If you don't know how to install python packages, please check the
`detailed instructions`__. `detailed instructions`__.
__ https://github.com/amjith/pgcli#detailed-installation-instructions __ https://github.com/dbcli/pgcli#detailed-installation-instructions
Usage Usage
----- -----
@ -74,7 +74,7 @@ If you're interested in contributing to this project, first of all I would like
to extend my heartfelt gratitude. I've written a small doc to describe how to to extend my heartfelt gratitude. I've written a small doc to describe how to
get this running in a development setup. get this running in a development setup.
https://github.com/amjith/pgcli/blob/master/DEVELOP.rst https://github.com/dbcli/pgcli/blob/master/DEVELOP.rst
Please feel free to reach out to me if you need help. Please feel free to reach out to me if you need help.
My email: amjith.r@gmail.com, Twitter: `@amjithr <http://twitter.com/amjithr>`_ My email: amjith.r@gmail.com, Twitter: `@amjithr <http://twitter.com/amjithr>`_
@ -194,13 +194,13 @@ interface to Postgres database.
Thanks to all the beta testers and contributors for your time and patience. :) Thanks to all the beta testers and contributors for your time and patience. :)
.. |Build Status| image:: https://api.travis-ci.org/amjith/pgcli.svg?branch=master .. |Build Status| image:: https://api.travis-ci.org/dbcli/pgcli.svg?branch=master
:target: https://travis-ci.org/amjith/pgcli :target: https://travis-ci.org/dbcli/pgcli
.. |PyPI| image:: https://pypip.in/version/pgcli/badge.svg .. |PyPI| image:: https://pypip.in/version/pgcli/badge.svg
:target: https://pypi.python.org/pypi/pgcli/ :target: https://pypi.python.org/pypi/pgcli/
:alt: Latest Version :alt: Latest Version
.. |Gitter| image:: https://badges.gitter.im/Join%20Chat.svg .. |Gitter| image:: https://badges.gitter.im/Join%20Chat.svg
:target: https://gitter.im/amjith/pgcli?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge :target: https://gitter.im/dbcli/pgcli?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
:alt: Gitter Chat :alt: Gitter Chat

4
Vagrantfile vendored
View File

@ -42,7 +42,7 @@ Vagrant.configure(2) do |config|
-p /pgcli/ \ -p /pgcli/ \
--after-install /pgcli/post-install \ --after-install /pgcli/post-install \
--after-remove /pgcli/post-remove \ --after-remove /pgcli/post-remove \
--url https://github.com/amjith/pgcli \ --url https://github.com/dbcli/pgcli \
--description "#{pgcli_description}" \ --description "#{pgcli_description}" \
--license 'BSD' --license 'BSD'
SHELL SHELL
@ -83,7 +83,7 @@ Vagrant.configure(2) do |config|
-p /pgcli/ \ -p /pgcli/ \
--after-install /pgcli/post-install \ --after-install /pgcli/post-install \
--after-remove /pgcli/post-remove \ --after-remove /pgcli/post-remove \
--url https://github.com/amjith/pgcli \ --url https://github.com/dbcli/pgcli \
--description "#{pgcli_description}" \ --description "#{pgcli_description}" \
--license 'BSD' --license 'BSD'
SHELL SHELL

View File

@ -170,7 +170,7 @@ class PGCli(object):
self.refresh_completions() self.refresh_completions()
key_binding_manager = pgcli_bindings(self.vi_mode) key_binding_manager = pgcli_bindings(self.vi_mode)
print('Version:', __version__) print('Version:', __version__)
print('Chat: https://gitter.im/amjith/pgcli') print('Chat: https://gitter.im/dbcli/pgcli')
print('Mail: https://groups.google.com/forum/#!forum/pgcli') print('Mail: https://groups.google.com/forum/#!forum/pgcli')
print('Home: http://pgcli.com') print('Home: http://pgcli.com')

View File

@ -4,7 +4,7 @@
* Commit with message: 'Releasing version X.X.X.' * Commit with message: 'Releasing version X.X.X.'
* Create a tag: git tag vX.X.X * Create a tag: git tag vX.X.X
* Register with pypi for new version: python setup.py register * Register with pypi for new version: python setup.py register
* Fix the image url in PyPI to point to github raw content. https://raw.githubusercontent.com/amjith/pgcli/master/screenshots/image01.png * Fix the image url in PyPI to point to github raw content. https://raw.githubusercontent.com/dbcli/pgcli/master/screenshots/image01.png
* Create source dist tar ball: python setup.py sdist * Create source dist tar ball: python setup.py sdist
* Test this by installing it in a fresh new virtualenv. Run SanityChecks [./sanity_checks.txt]. * Test this by installing it in a fresh new virtualenv. Run SanityChecks [./sanity_checks.txt].
* Upload the source dist to PyPI: https://pypi.python.org/pypi/pgcli * Upload the source dist to PyPI: https://pypi.python.org/pypi/pgcli