Skip to content
forked from danjac/realworld

Implementation of real-world application using Django and Unpoly.

License

Notifications You must be signed in to change notification settings

wei-y/realworld

 
 

Repository files navigation

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.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 54.3%
  • HTML 45.6%
  • Procfile 0.1%