본문 바로가기

업무

(40)
서버 호스팅, 도메인 연결, SSL인증서 적용 보호되어 있는 글입니다.
[사용자 매뉴얼] 참고자료 보호되어 있는 글입니다.
[Rasa] domain (+ 업데이트 중) [ domain 파일 구성 ]- intents- entities- forms - slots- response     슬롯요청 utter_ask_{slot_name}   일반응답 utter_{intent_name}_message  기타응답 utter_{custom_name})- actions- session_config  [ response ] 1. 슬롯요청 utter_ask_{slot_name}  (기본 text로 응답)responses: utter_ask_email: - text: "What is your email address?" utter_ask_phone_number: - text: "What is your phone number?"   (버튼으로 응답) _ customrespon..
[Rasa] Form과 slot 이벤트에 따른 action진행 domain.yml 파일# 인텐트intents: - booking # 엔티티entities: - name - companions - date# 슬롯slots: name: type: text influence_conversation: true companions: type: float influence_conversation: true date: type: text influence_conversation: true# 응답responses: utter_ask_name: - text: "예약자의 이름을 알려주세요." utter_ask_companions: - text: "동행자는 몇 명입니까?" utter_ask_date: - text: "..
[Rasa] json_to_yml.py 파일 정리 (+ 업데이트 중) 보호되어 있는 글입니다.
[리눅스 명령어] + 업데이트 중 (파일 디렉토리 확인)  ls (파일 디렉토리 확인_상세)  ls -1a  (파일 찾기)  find /경로 -name "파일이름"   (대소문자구분)  find / -iname "파일이름" (특정확장자) find / -iname ".conf" (오늘수정) find / -newermt "today" (+파일만찾기)  -type f (경로제외) find / -path / -prune -o -name "파일이름" -print   (최근접근파일)  find / -attime -1(파일권한확인) stat -c "%a" ex) stat -c "%a" script.sh     > 755  (형태로 출력)(포트확인) netstat -tuln더보기 -t : TCP 포트만 표시 -u : UDP 포트만 표시 -n : 주소와..
[웹서버] Nginx, APACHE 보호되어 있는 글입니다.
[Docker] 도커, 도커 스웜, 도커 컴포즈 보호되어 있는 글입니다.