Answers for "http://127.0.0.1:8000/"

0

http://127.0.0.1:8000/

LoginReg/base.html
Posted by: Guest on October-15-2021
0

http://127.0.0.1:8000/

return render(request,'product/product_list.html',context)
Posted by: Guest on October-15-2021
0

127.0.0.1:8000 localhost not working

# can not acces django server ,add this and then try

version: "2"

services:
  postgres:
    image: postgres:9.6
    volumes:
      - pgdata:/var/lib/data/postgres

  backend:
    build: .
    command: gosu app bash
    volumes:
      - .:/app
      - pyenv:/python
    links:
      - postgres:postgres
    ports:
      - 8000:8000

volumes:
  pyenv:
  pgdata:
Posted by: Guest on June-01-2020

Code answers related to "http://127.0.0.1:8000/"

Python Answers by Framework

Browse Popular Code Answers by Language