Skip to content

Latest commit

ย 

History

History
58 lines (46 loc) ยท 1.61 KB

README.md

File metadata and controls

58 lines (46 loc) ยท 1.61 KB

Github Action์„ ํ†ตํ•ด ํŽ˜๋ฏธ์œ„ํ‚ค์˜ ํŽ˜๋ฏธ์œ„ํ‚ค:ํ•œ์ค„์ธ์šฉ ๋ฌธ์„œ์—์„œ ํ•œ ๋ฌธ์žฅ์„ ๊ฐ€์ ธ์™€ ์ง€์ •๋œ ํŠธ์œ„ํ„ฐ ๊ณ„์ •์— ํŠธ์œ—ํ•ฉ๋‹ˆ๋‹ค.

ย 

Development

# 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.