# django-realworld-example-app **Repository Path**: carlos-wong/django-realworld-example-app ## Basic Information - **Project Name**: django-realworld-example-app - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-26 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ![Django DRF Example App](project-logo.png) > ### Example Django DRF codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld-example-apps) API spec. This repo is functionality complete — PR's and issues welcome! ## Installation 1. Clone this repository: `git clone git@github.com:gothinkster/productionready-django-api.git`. 2. `cd` into `conduit-django`: `cd productionready-django-api`. 3. Install [pyenv](https://github.com/yyuu/pyenv#installation). 4. Install [pyenv-virtualenv](https://github.com/yyuu/pyenv-virtualenv#installation). 5. Install Python 3.5.2: `pyenv install 3.5.2`. 6. Create a new virtualenv called `productionready`: `pyenv virtualenv 3.5.2 productionready`. 7. Set the local virtualenv to `productionready`: `pyenv local productionready`. 8. Reload the `pyenv` environment: `pyenv rehash`. If all went well then your command line prompt should now start with `(productionready)`. If your command line prompt does not start with `(productionready)` at this point, try running `pyenv activate productionready` or `cd ../productionready-django-api`. If pyenv is still not working, visit us in the Thinkster Slack channel so we can help you out.