E
Size: a a a
E
T
E
V
E
h
V
V
JW
git@github.com: Permission denied (publickey).это проблема ключей, или нужно какие то порты открыть дополнительно? как вообще клонировать репозиторий в ec2?
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
PTY allocation request failed on channel 0
Hi {username}! You've successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.
V
git@github.com: Permission denied (publickey).это проблема ключей, или нужно какие то порты открыть дополнительно? как вообще клонировать репозиторий в ec2?
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
PTY allocation request failed on channel 0
Hi {username}! You've successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.
JW
JW
V
K
class Item(Base):
id = Column(Integer, primary_key=True, index=True)
name = Column(String)
item_type = Column(String)
ass ItemType(Base):нужно связать модель Item и ItemType, чтобы когда я кверила Item, мне возвращался item_type в виде строки (type с ItemType)
id = Column(Integer, primary_key=True, index=True)
type = Column(String)
V
class Item(Base):
id = Column(Integer, primary_key=True, index=True)
name = Column(String)
item_type = Column(String)
ass ItemType(Base):нужно связать модель Item и ItemType, чтобы когда я кверила Item, мне возвращался item_type в виде строки (type с ItemType)
id = Column(Integer, primary_key=True, index=True)
type = Column(String)
A
A
V