Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nens/nensbuild
One step buildout build.
https://github.com/nens/nensbuild
Last synced: 4 days ago
JSON representation
One step buildout build.
- Host: GitHub
- URL: https://github.com/nens/nensbuild
- Owner: nens
- License: bsd-2-clause
- Created: 2012-12-15T09:26:44.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-05T23:29:17.000Z (almost 12 years ago)
- Last Synced: 2024-11-10T06:09:00.976Z (7 days ago)
- Language: Python
- Size: 207 KB
- Stars: 0
- Watchers: 33
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE.rst
Awesome Lists containing this project
README
NENS Build
============.. image:: https://secure.travis-ci.org/nens/nensbuild.png?branch=master
:target: http://travis-ci.org/nens/nensbuild/At Nelen & Schuurmans_ we use a couple commands to get a development environment
up and running::git clone repo
cd repo
ln -s development.cfg buildout.cfg
python bootstrap.py
bin/buildoutThere are more commands that could be eliminated::
createdb
bin/django syncdb
bin/django migrateThis is a code smell according to the book Clean Code. A build should
have three steps at the most::git clone repo
cd repo
buildThis python packages aims to solve this by eliminating the symlink, bootstrap and buildout commands::
git clone repo
cd repo
nens-build.. _Nelen & Schuurmans: http://www.nelen-schuurmans.nl