├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── cd.yml ├── .gitignore ├── LICENSE ├── Persona ├── Persona_logic.png ├── snadol_Persona.drawio └── 도움말_임시.png ├── README.md ├── Return Type Generator.md ├── __init__.py ├── alphaSandol ├── Imoge.json ├── Pipfile ├── Pipfile.lock ├── __init__.py ├── announcement.py ├── covid.py ├── feedback.py ├── main.py ├── restaurant.py ├── return_type_generator.py ├── settings.py ├── subway.py ├── test_block.py ├── test_constant.py ├── weather.py └── zappa_settings.json ├── betaSandol ├── Pipfile ├── Pipfile.lock ├── lambda_prototype.py ├── lambda_prototype_module.py ├── return_type_generator.py └── zappa_settings.json ├── commerce_img ├── commerce_test1.png ├── commerce_test2.png ├── commerce_test3.png ├── commerce_test4.png ├── commerce_test5.png └── commerce_test6.png ├── img ├── card1.png ├── card2.png ├── card3.png ├── card_covid.png ├── card_food.png ├── card_miga.png ├── card_other.png ├── card_wells.png ├── diagram.jpg ├── logo1.png ├── logo2.png ├── logo3.png ├── logo_profile1.png ├── logo_profile2.png ├── logo_profile3.png ├── meal_map.png ├── 광고_미가.png ├── 광고_세미콘.png ├── 산돌이레포짓토리QR.jpg └── 산돌이친구추가QR.jpeg ├── return_type_img ├── Basic Card Field.JPG ├── Basic Card Test.JPG ├── Basic Card Type.JPG ├── Carousel Type.JPG ├── Commerce Card Field.JPG ├── Commerce Card Type.JPG ├── List Card Type.JPG ├── Simple Text Test.JPG ├── Text Type.JPG └── set_img.PNG ├── statistic ├── now.csv └── sandol_200109-211018.csv └── test_stored_data ├── feedback.txt └── restaurant_menu.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/LICENSE -------------------------------------------------------------------------------- /Persona/Persona_logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/Persona/Persona_logic.png -------------------------------------------------------------------------------- /Persona/snadol_Persona.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/Persona/snadol_Persona.drawio -------------------------------------------------------------------------------- /Persona/도움말_임시.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/Persona/도움말_임시.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/README.md -------------------------------------------------------------------------------- /Return Type Generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/Return Type Generator.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alphaSandol/Imoge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/Imoge.json -------------------------------------------------------------------------------- /alphaSandol/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/Pipfile -------------------------------------------------------------------------------- /alphaSandol/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/Pipfile.lock -------------------------------------------------------------------------------- /alphaSandol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alphaSandol/announcement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/announcement.py -------------------------------------------------------------------------------- /alphaSandol/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/covid.py -------------------------------------------------------------------------------- /alphaSandol/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/feedback.py -------------------------------------------------------------------------------- /alphaSandol/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/main.py -------------------------------------------------------------------------------- /alphaSandol/restaurant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/restaurant.py -------------------------------------------------------------------------------- /alphaSandol/return_type_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/return_type_generator.py -------------------------------------------------------------------------------- /alphaSandol/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/settings.py -------------------------------------------------------------------------------- /alphaSandol/subway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/subway.py -------------------------------------------------------------------------------- /alphaSandol/test_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/test_block.py -------------------------------------------------------------------------------- /alphaSandol/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/test_constant.py -------------------------------------------------------------------------------- /alphaSandol/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/weather.py -------------------------------------------------------------------------------- /alphaSandol/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/alphaSandol/zappa_settings.json -------------------------------------------------------------------------------- /betaSandol/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/betaSandol/Pipfile -------------------------------------------------------------------------------- /betaSandol/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/betaSandol/Pipfile.lock -------------------------------------------------------------------------------- /betaSandol/lambda_prototype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/betaSandol/lambda_prototype.py -------------------------------------------------------------------------------- /betaSandol/lambda_prototype_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/betaSandol/lambda_prototype_module.py -------------------------------------------------------------------------------- /betaSandol/return_type_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/betaSandol/return_type_generator.py -------------------------------------------------------------------------------- /betaSandol/zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/betaSandol/zappa_settings.json -------------------------------------------------------------------------------- /commerce_img/commerce_test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/commerce_img/commerce_test1.png -------------------------------------------------------------------------------- /commerce_img/commerce_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/commerce_img/commerce_test2.png -------------------------------------------------------------------------------- /commerce_img/commerce_test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/commerce_img/commerce_test3.png -------------------------------------------------------------------------------- /commerce_img/commerce_test4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/commerce_img/commerce_test4.png -------------------------------------------------------------------------------- /commerce_img/commerce_test5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/commerce_img/commerce_test5.png -------------------------------------------------------------------------------- /commerce_img/commerce_test6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/commerce_img/commerce_test6.png -------------------------------------------------------------------------------- /img/card1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/card1.png -------------------------------------------------------------------------------- /img/card2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/card2.png -------------------------------------------------------------------------------- /img/card3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/card3.png -------------------------------------------------------------------------------- /img/card_covid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/card_covid.png -------------------------------------------------------------------------------- /img/card_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/card_food.png -------------------------------------------------------------------------------- /img/card_miga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/card_miga.png -------------------------------------------------------------------------------- /img/card_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/card_other.png -------------------------------------------------------------------------------- /img/card_wells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/card_wells.png -------------------------------------------------------------------------------- /img/diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/diagram.jpg -------------------------------------------------------------------------------- /img/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/logo1.png -------------------------------------------------------------------------------- /img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/logo2.png -------------------------------------------------------------------------------- /img/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/logo3.png -------------------------------------------------------------------------------- /img/logo_profile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/logo_profile1.png -------------------------------------------------------------------------------- /img/logo_profile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/logo_profile2.png -------------------------------------------------------------------------------- /img/logo_profile3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/logo_profile3.png -------------------------------------------------------------------------------- /img/meal_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/meal_map.png -------------------------------------------------------------------------------- /img/광고_미가.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/광고_미가.png -------------------------------------------------------------------------------- /img/광고_세미콘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/광고_세미콘.png -------------------------------------------------------------------------------- /img/산돌이레포짓토리QR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/산돌이레포짓토리QR.jpg -------------------------------------------------------------------------------- /img/산돌이친구추가QR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/img/산돌이친구추가QR.jpeg -------------------------------------------------------------------------------- /return_type_img/Basic Card Field.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/Basic Card Field.JPG -------------------------------------------------------------------------------- /return_type_img/Basic Card Test.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/Basic Card Test.JPG -------------------------------------------------------------------------------- /return_type_img/Basic Card Type.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/Basic Card Type.JPG -------------------------------------------------------------------------------- /return_type_img/Carousel Type.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/Carousel Type.JPG -------------------------------------------------------------------------------- /return_type_img/Commerce Card Field.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/Commerce Card Field.JPG -------------------------------------------------------------------------------- /return_type_img/Commerce Card Type.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/Commerce Card Type.JPG -------------------------------------------------------------------------------- /return_type_img/List Card Type.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/List Card Type.JPG -------------------------------------------------------------------------------- /return_type_img/Simple Text Test.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/Simple Text Test.JPG -------------------------------------------------------------------------------- /return_type_img/Text Type.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/Text Type.JPG -------------------------------------------------------------------------------- /return_type_img/set_img.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/return_type_img/set_img.PNG -------------------------------------------------------------------------------- /statistic/now.csv: -------------------------------------------------------------------------------- 1 | awd 2 | -------------------------------------------------------------------------------- /statistic/sandol_200109-211018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/statistic/sandol_200109-211018.csv -------------------------------------------------------------------------------- /test_stored_data/feedback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/test_stored_data/feedback.txt -------------------------------------------------------------------------------- /test_stored_data/restaurant_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhhminme/kpu_sandol_team/HEAD/test_stored_data/restaurant_menu.txt --------------------------------------------------------------------------------