phase7 / realworld

Implementation of real-world application using Django and Unpoly.

Home Page:https://conduit2.herokuapp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Real World App

Implementation of real world application: https://github.com/gothinkster/realworld/ using Django and Unpoly.

Installation:

To install and run locally:

  • Clone the project:

    git clone https://github.com/alnuaimi94/realworld
  • Change directory & Create virtualenv called env:

    cd realworld
    python3 -m venv env
  • Activate virtualenv:

    • for Windows System:
        env/Scripts/activate
    • for Linux System:
        source ./env/bin/activate
  • Install dependencies:

    pip install -r requirements/local.txt
  • Change DJANGO_SETTINGS_MODULE from production to local in manage.py, asgi.py and wsgi.py files.

    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'realworld.config.settings.local')
  • Migrate & Runserver:

    python manage.py migrate
    python manage.py runserver
  • Finally open the localhost in the browser:

      http://127.0.0.1:8000/

About

Implementation of real-world application using Django and Unpoly.

https://conduit2.herokuapp.com

License:MIT License


Languages

Language:Python 54.3%Language:HTML 45.6%Language:Procfile 0.1%