https://github.com/tkdn/go-study
https://github.com/tkdn/go-study
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tkdn/go-study
- Owner: tkdn
- Created: 2024-01-02T07:59:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-24T10:12:37.000Z (over 1 year ago)
- Last Synced: 2025-12-20T00:10:28.069Z (6 months ago)
- Language: Go
- Size: 138 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ready for DB
## .envrc
```sh
cp .envrc.example .envrc
direnv allow
```
## docker
```sh
docker compose up -d
```
## psql login
```sh
psql -h 127.0.0.1 -p 5432 -U $(POSTGRES_USER) $(POSTGRES_DB)
```