Giter Site home page Giter Site logo

Comments (3)

FedericoCeratto avatar FedericoCeratto commented on May 30, 2024

The example application is meant to be start and populate the database under the assumption that the database is empty.

from bottle-cork.

oshihirii avatar oshihirii commented on May 30, 2024

The function that populates the database is assigned to the variable mb.

Then mb is a value assigned to the backend parameter of aaa, an instantiation of the Cork class.

aaa is then used throughout the rest of the program (aaa.login and aaa.register etc).

I cannot therefore comment out the function, because aaa seems to depend on it being there.

I cannot leave the function in though, because it seems it is causing the duplicate error?

To clarify:

  • I delete cork-example database.
  • I run the application once (database is created and populated).
  • I run the application again, and a duplicate error occurs.

from bottle-cork.

oshihirii avatar oshihirii commented on May 30, 2024

Solution (i think)

I looked at this tutorial's code and noticed that backend didn't seem to be assigned the value of a function, so I commented out the populate_mongodb_backend() function (as the database has already been populated) and modifed the code to the following and now I can login and access all admin pages etc:

hostname = os.environ['OPENSHIFT_MONGODB_DB_URL']
connection = pymongo.MongoClient(host=hostname)
mb = MongoDBBackend(db_name='cork-example', initialize=True,hostname = hostname)
aaa = Cork(backend=mb, email_sender='[email protected]', smtp_url='smtp://smtp.magnet.ie')

from bottle-cork.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.