unsolved.wa를 로컬에서 설치하고 실행하는 방법을 정리해였습니다. 순서대로 진행해주세요.
git clone https://github.com/UNSOLVED-WA/unsolved-back-end.gitDB_NAME=DB이름
DB_PASSWORD=DB비밀번호docker rmi unsolvedwa/backend-api
docker compose up --build -dINSERT INTO TEAM VALUES (0, '2020-02-02','2020-02-02','42 Seoul');
INSERT INTO PROBLEM VALUES (0, '2020-02-02', '2020-02-02', 1000, 1, 'a+b');docker exec -it unsolvedwa-db bash
mysql -u root -p
use unsolved_wa;git clone https://github.com/UNSOLVED-WA/unsolved-extension
cd unsolved-extension/extension
npm run buildchrome://extensions
unsolved-extention
├── README.md
├── asset
├── extension
│ ├── dist # build file for Load
│ └── src
│ │ ├── background # background script
│ │ ├── contentScript # conteent script(for injection)
│ │ ├── popup # action script
│ │ ├── static # manifest.json & images
│ │ ├── test # experimental function
│ │ └── utils # common utility functions
└── lagacy_with_vanilla_js

