Hi NeoModel seems to be great but I'm a noob ^^ How do I set the environnement variable (which is a basic to connect the database) ?
the documentation available here http://neomodel.readthedocs.org/en/latest/getting_started.html says : > Set the location of neo4j via an environment variable (default is > http://localhost:7474/db/data/): > > export NEO4J_REST_URL=http://user:password@localhost:7474/db/data/ > > But How do I set this environnment variable ? is it in Python ? in Django ? in Windows (in my case) ? thanks for your attention Jerome Le lundi 5 novembre 2012 07:28:58 UTC-2, Nigel Small a écrit : > > Hi Adam > > The neomodel project is also a recent addition to the available options > for Django+Neo4j. It's based on py2neo and is available here: > > https://github.com/robinedwards/neomodel > > Cheers > Nigel > > > On 4 November 2012 23:40, Matt Luongo <[email protected] <javascript:>> > wrote: > >> Adam, >> >> I'm the primary maintainer of neo4django. As far as Django integrations, >> the project on GitHub is the most up-to-date. We use it in our beta, and >> others are using it in production. >> >> Unfortunately, I've yet to address relationship models (and properties). >> One narrow use case for relationship properties- ordering- is covered now. >> >> If you need relationship properties now- as opposed to moving some >> modelling to nodes- there are a couple options. >> >> - Use neo4j-rest-client raw. You'll lose signals, model definitions, >> and querying and indexing support, but you'll have the full power of >> Neo4j. >> - Use neo4django, and "drop down" to neo4j-rest-client when you want >> to use relationship properties. I can explain further if you'd like. >> - Use another binding, like Bulbs. Bulbs gives you some of the same >> abstractions, including relationships, with way less hand-holding (eg, >> querying). >> - Finally- pitch in! I love contributions, and do my best to answer >> issues and questions quickly. Relationship models are the project's >> longest-standing issue ( >> https://github.com/scholrly/neo4django/issues/1), so any >> contributions to that end would be extremely appreciated :) >> >> HTH! >> >> - Matt Luongo >> >> On Friday, November 2, 2012 3:42:44 PM UTC-4, adam wrote: >>> >>> I'm fairly new to implementing in Neo4j. Can I ask the list what the >>> current state of the art is for implementing in Django?---recommendations, >>> starting points, etc? >>> >>> I've seen: >>> http://www.slideshare.net/thobe/django-and-neo4j-domain- >>> modeling-that-kicks-ass >>> and >>> http://journal.thobe.org/2009/12/seamless-neo4j-integration- >>> in-django.html >>> ...by Tobias Lindaaker. They're exciting but are a bit old. >>> >>> Is the Scholr.ly implementation the most up-to-date currently? >>> https://github.com/scholrly/neo4django >>> >>> This looks great, but is there anything mature for production? Has the >>> inability to assign relationship properties been addressed yet? >>> >>> Thanks! >>> Adam Hogan >>> >> -- >> >> >> > > -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
