Github Action์ ํตํด ํ๋ฏธ์ํค์ ํ๋ฏธ์ํค:ํ์ค์ธ์ฉ ๋ฌธ์์์ ํ ๋ฌธ์ฅ์ ๊ฐ์ ธ์ ์ง์ ๋ ํธ์ํฐ ๊ณ์ ์ ํธ์ํฉ๋๋ค.
ย
# Setup venv first
# python -m venv .venv
# source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt
pip install --editable .
# Run
export TWITTER_CONSUMER_KEY=xxxxxxxx
export TWITTER_CONSUMER_SECRET=xxxxxxxx
export TWITTER_ACCESS_TOKEN=xxxxxxxx
export TWITTER_ACCESS_TOKEN_SECRET=xxxxxxxx
export WIKI_PASSWORD=xxxxxxxx
python -m tweetbot
# Test
pip install pytest
pytest
# Lint
pip install flake8
flake8
# Packaging
pip install wheel
python setup.py sdist bdist_wheel
ย
The source code of tweetbot is primarily distributed under the terms of the GNU Affero General Public License v3.0 or any later version. See COPYRIGHT for details.