-
Notifications
You must be signed in to change notification settings - Fork 15
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
Project feedback #18
Comments
Hi Brad, Thanks for the feedback. Lots of good points in there. Some that should probably have their own issues filed. There are a few that I can address, and others that we're actively working to resolve:
Finally, a clarification on Django (+ the ecosystem), and its role in openPDS: Django is a means to meet an end here: no work has gone into fitting openPDS into the larger Django ecosystem. The goal was for someone to clone a repo and have a registry / PDS server up and running in a few instructions. Django was chosen due to its simplicity and prior knowledge on the initial team. In fact, more thought and work has gone into making it easier to use / deploy without prior Django experience than into making it behave and look more like a typical Django app; the target audience for openPDS up until this point has primarily been data scientists, rather than Django developers. We try to use as few Django-isms as possible so that users don't need to learn too much about Django to use the project, and so applications written on the framework can be ported between implementations easily (a bit of work has been done in Node.js, as well as quite a bit of work in Java). We're not attached to Django, and our attachment to Python is only a consequence of its popularity among data scientists. All that being said, we're definitely interested in making openPDS and the corresponding registry server more "standard" in ways that won't require users to know anything more about Django than they currently do (ideally, they wouldn't need to know anything about Django at all, actually). Thanks again for the issue / feedback. I'm going to go ahead and file the other issues I mentioned above separately. |
Thanks for the quick response! Your comments on the target audience for this project clarifies a lot of things for me. Here's a rough idea on how you might go about distributing this project in the future:
You might consider taking a look at Pinax, which essentially gives you tools to quickly put together a project based on many django apps. You can see the README in the pinax-project-symposion repo for an example of this. I realize that's likely a long-term goal and would require further discussion, but it's one idea. I still think, that it'd be worthwhile to follow as many Django conventions as possible, at lease within the core of the project. There's a huge community of people that consistently contribute to open source. Lowering the barrier for contributions is a Good Thing :) And there's no reason why we couldn't hide some of those django-isms from end-users if there were project installer similar to pinax. Hope some of that helps! |
Hey Brad, +1 to everything Brian just said. Thank you again for the detailed and helpful feedback. Al |
I've recently pulled down this project and attempted to get it (with openPDS) running. A couple of things struck me as surprising and/or unexpected:
settings.py
file, ). Typically I'd expect a django app or a collection of apps.doc/INSTALL.rst
. Also, the additionalfabfile.py
andbootstrap.sh
in the root seem either out of date or out of place (again, these are project-level things I'd not expect to see distributed in a reusable app).A few things I'd typically expect from a reusable django app are:
requirements.txt
in the root of the project. Yours seems to be buried with some deployment-related config files (again something I wouldn't expect here, since I may choose to deploy my project differently).setup.py
that allowed me to install with:pip install openPDS-RegistryServer
python manage.py test registryServer
If the goal of this project is to be something that fits within the django ecosystem, the barrier to usage and contributions would be lower if it followed some of the typical community conventions. Some of this information is now available in the django docs, as well.
I hope this is helpful feedback!
The text was updated successfully, but these errors were encountered: