반응형
Backend application에서 DB를 연결하기 위해서는
DATABASE URL을 추가 설정해주어야 한다.
DATABASE URL의 FORMAT은 다음과 같다.
postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...;]
postgresql://user:password@localhost:5432/dbname;
1) 데이터베이스 종류 : postgresql
2) User ID : user
3) Password : password
4) DB host address : localhost
5) DB connect port : 5432
6) DB name : dbname
반응형
'Programming > Database' 카테고리의 다른 글
postgreSQL TABLE 이름 변경하기 rename table (0) | 2021.11.02 |
---|---|
postgreSQL DELETE TABLE 데이터베이스 삭제 (0) | 2021.11.02 |
postgreSQL in Django (0) | 2021.10.25 |
postgres DATABASE #Export CSV, UUID, JOIN USING (0) | 2021.10.24 |
postgres Database # Foreign Key (0) | 2021.10.24 |
postgres Database # Primary Key (0) | 2021.10.24 |
댓글