ya2ber
1.0.0
CLI聊天聊天。沒有廣告,沒有統計數據,沒有特殊術語,沒有未知的第三方服務,沒有間諜,沒有棘手的界面...沒有胡扯。
Ya2ber剛剛源自Yabber ,這是Jabber的同義詞,Jabber是通常的談話的同義詞。
sudo ),並且歷史記錄中沒有存儲。 *實際上,服務器存儲最後的登錄日期,而不是現在的活動日期
客戶消息的示例:
{
"message" : " Hello, username! " ,
"type" : " message " ,
"command" : " /username "
}服務器消息的示例:
{
"message" : " username left the chat " ,
"type" : " system " ,
"online" : 5
}git clone [email protected]:zhibirc/ya2ber.git
cd ya2ber
# it'll automatically install dependencies in all nested application folders
npm install我們在委託之前,在本地運行代碼檢查,以確保尊重所有基本代碼要求和策略。安裝非常簡單(一次性操作):
# install pre-commit using Python's pip
pip install pre-commit
# OR
# install pre-commit using using Homebrew
brew install pre-commit
# install the Git hook scripts
pre-commit install現在,預先委託將在git commit上自動運行!預密碼掛鉤的配置存儲在.pre-commit-config.yaml文件中。
預先註釋
-n參數如下: git commit -m " commit message " -nSKIP=<hook_id> : SKIP=codespell git commit -m " commit message " 通常,可能有必要在應用程序中使用一些通常存儲在環境變量中的敏感數據。例如,AWS鍵。如果是這樣,重要的是要記住,任何敏感數據都不應洩露給包括GitHub存儲庫在內的公眾。
要實現這一目標,請在適當的目錄(客戶端/或服務器/)中創建.env.Local文件(在這種情況下請勿使用.ENV文件),然後將環境變量放置在此處私有的環境變量。該文件被git忽略,並在圖像構建上的docker上下文中排除。
我們將GNU Make用於與源代碼和應用程序部署有關的自動操作。
獲取所有可用命令的幫助/指南。
makemake help