- ์ ์์ : <์ฃผ์ ์ ์์ ์ด๋ฆ>[, <๊ณต๋ ์ ์์ ์ด๋ฆ> ...]
- ์ ์์ผ : <์ ์ํ ๋ ์ง YYYY-mm-dd>
- ์์ ์ผ : <์์ ํ ๋ ์ง YYYY-mm-dd>
- ์ํ : <์ ์๋จ|์งํ์ค|๋ฐ์๋จ|๋ฐ๋ ค๋จ|ํ๊ธฐ๋จ>
- PR: <PR ๋ฒํธ>
- Issue: <๊ด๋ จ ์ด์ ๋ฒํธ, ์ ์ฅ์/์ด์ ํฌ๋งท ์ฌ์ฉ>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| kafka-ui: | |
| container_name: kafka-ui | |
| image: provectuslabs/kafka-ui:latest | |
| ports: | |
| - 8080:8080 | |
| depends_on: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.3' | |
| volumes: | |
| elasticsearch: | |
| services: | |
| elasticsearch: | |
| image: elasticsearch:7.6.0 | |
| volumes: | |
| - type: bind |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ docker run -d \ | |
| --name db \ | |
| -p 5432:5432 \ | |
| -e POSTGRES_DB=djangodb \ | |
| -e POSTGRES_USER=django \ | |
| -e POSTGRES_PASSWORD=djangopassword \ | |
| -v $(pwd)/data:/var/lib/postgresql/data \ | |
| postgres |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.3' | |
| services: | |
| redis: | |
| image: library/redis | |
| ports: | |
| - "6379:6379" | |
| command: [ | |
| "sh", "-c", | |
| "exec redis-server --requirepass rediswithodk" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.3' | |
| services: | |
| mailhog: | |
| image: mailhog/mailhog | |
| ports: | |
| - "8025:8025" | |
| healthcheck: | |
| test: ["CMD", "echo | telnet 127.0.0.1 8025"] | |
| interval: 1m30s |
I hereby claim:
- I am raccoonyy on github.
- I am raccoony (https://keybase.io/raccoony) on keybase.
- I have a public key ASCSAK1D3MKUAjcZmmfkpXkJ-BmxbOH5-sl_tBRblciyjwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from product.models import Product, OrderLog | |
| animal = Product.objects.create(name='๋๋ฌผ๋์', price=8200) | |
| pack = Product.objects.create(name='์ฌ์ด๋๋ถ ํจํค์ง', price=38400) | |
| abc = Product.objects.create(name='ABC Activity', price=9900) | |
| import datetime | |
| may1 = datetime.datetime(2016, 4, 1) | |
| may2 = datetime.datetime(2016, 4, 2) | |
| may3 = datetime.datetime(2016, 4, 3) |