-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Add a Makefile #1247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a Makefile #1247
Conversation
@dpkp @jeffwidman Any commands you want to add/change? |
Makefile
Outdated
# Some simple testing tasks (sorry, UNIX only). | ||
|
||
FLAGS= | ||
KAFKA_VERSION=0.11.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can update to 0.11.0.1 now
Makefile
Outdated
SCALA_VERSION=2.11 | ||
|
||
setup: | ||
pip install -r requirements-dev.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably want a virtualenv here, dont we? or perhaps --user ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer to assume the virtualenv is already installed and activated. There are a lot of different ways to do that, like pyvenv, virtualenv, virtualenvwrapper and so on.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can change the name to something like setup-local
might be nice to also include a command to fetch / install server artifacts via build_integration.sh |
…ject, generate docs and run tests.
a1788c9
to
2d36082
Compare
With this, users which are less familiar with the project can easily build, generate docs and run tests.