# django_nameko_demo **Repository Path**: wang-chunlong/django_nameko_demo ## Basic Information - **Project Name**: django_nameko_demo - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-18 - **Last Updated**: 2022-03-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # django-nameko demo ## 启动rabbitmq服务 ```commandline docker-compose up ``` ## 启动django服务 ```commandline python manage.py runserver ``` ## 启动nameko服务 ```commandline nameko run nameko_service ``` ## 访问接口http://127.0.0.1:8000/nameko/ ```python import requests requests.get("http://127.0.0.1:8000/nameko/") requests.post("http://127.0.0.1:8000/nameko/") ```