I need to create a customized building configuration for my OpenShift(NextGen) Django application .Currently I am having django-psql-persistent configuration, which is comes with OpenShift(NextGen)-Django by default.
How to create new Building Configuration in OpenShift (for Django app)
1.5k Views Asked by AudioBubble At
1
There are 1 best solutions below
Related Questions in DJANGO
- Display images on Django Template Site
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Django invalid literal for int() with base 10:
- Removing URL features from tokens in NLTK
- Django Noob URL to from Root Page to sub Page
- Django Admin tables not displaying correctly
- Django with chartkick
- Django urls.py not rendering correct template
- django form errors before submit
- django admin: custom app_index with context
- Display multiple models in one view in Django
- Unexpected NoReverseMatch error when using include() in urls patterns
- Search for a key in django.core.cache
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- Django flush won't load fixtures
Related Questions in OPENSHIFT
- OpenShift Pyramid logging to file
- com.mongodb.MongoException: not authorized for insert on myworld.Users
- Openshift context path
- error while establishing connection with node.js server OpenShift
- Cannot port forward for app
- OpenShift - Tomcat 7 (JBoss EWS 2.0) + PostgreSQL 9.2 + Hibernate 4.3.5
- running node.js sails app on openshift
- Can't get Pandas to install with OpenShift
- Cartridge Python2.7 on OPenshift
- OpenShift Requirements.txt Pip error
- OpenShift PHP Image Asset Giving 500 Error
- Codeigniter on OpenShift is redirecting to 404 error page
- Why mongodb is reset after push to openshift
- Openshift - trigger Jenkins build on git push
- Openshift redirect to https using flask-base example
Related Questions in OPENSHIFT-NEXTGEN
- How to create new Building Configuration in OpenShift (for Django app)
- django.core.exceptions.ImproperlyConfigured: WSGI application 'application' could not be loaded
- createsuperuser django openshift v3
- Build Error after creating project with nodejs example provided by openshift
- TypeError while uploading image using REST api in OpenShift V3
- OpenShift Nextgen cannot connect postgresql to java project
- The pod has been stuck in the pending state for more than five minutes
- OpenShift Next Gen fails to mount persistent volume
- How to create a requirements.txt file for OpenShift Online Next Gen Developer Preview?
- How to define location of app.py in OpenShift Next Gen Developer Preview?
- How to interact with MongoDB via shell in OpenShift Online 3 Dev Preview?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can use the basic 'python' builder image available from the catalog when adding to a project from the web console. You can also use
oc new-app python~<repo-url>from the command line using theocclient.For examples of a few Django applications set up to use a production WSGI server see:
The repos provide some instructions of deploying the examples and how to set appropriate environment variables.