https://github.com/developersociety/tools
Miscellaneous tools
https://github.com/developersociety/tools
Last synced: 5 months ago
JSON representation
Miscellaneous tools
- Host: GitHub
- URL: https://github.com/developersociety/tools
- Owner: developersociety
- Created: 2016-09-26T11:36:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-17T13:37:42.000Z (over 1 year ago)
- Last Synced: 2024-12-17T14:32:20.077Z (over 1 year ago)
- Language: Shell
- Size: 38.1 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
=========================================
The Developer Society - Development Tools
=========================================
Tools for making development at The Developer Society quicker, easier and less error prone.
https://github.com/developersociety/tools
Installation
============
To install these tools:
.. code:: console
$ git clone git@github.com:developersociety/tools.git
$ cd tools/bin
$ pwd
Add the bin directory to your ``$PATH``, by editing your ``~/.bash_profile``:
.. code:: bash
export PATH="/path/to/tools/bin:$PATH"
Usage
=====
dev-clone
---------
This tool will `git-clone` a repo from Dev's github and setup virtualenvwrapper for you, with a
virtualenv and a virtualenvwrapper project for you.
It requires virtualenvwrapper to be installed with the `$PROJECT_HOME` environment variable set
correctly.
It will:
* `git-clone` the repo from Dev's github
* setup virtualenv with virtualenvwrapper
* setup virtualenvwrapper project dir
Example of use:
~~~~~~~~~~~~~~~
.. code-block:: console
$ dev-clone devsoc
dev-wipeenv
-----------
Removes all packages in the current virtualenv.
Example of use:
~~~~~~~~~~~~~~~
.. code-block:: console
$ dev-wipeenv
Development
===========
Please contribute! If you find yourself needing to do the same thing over and over, or you keep
forgetting a process, or you just feel you're typing too much to do boring stuff... then create a
script to automate/help/optimise it. And then we can all benefit.