kitsune

Platform for Mozilla Support

  • 所有者: mozilla/kitsune
  • 平台:
  • 許可證: BSD 3-Clause "New" or "Revised" License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Kitsune

Kitsune is the platform that powers SuMo (support.mozilla.org)

It is a Django application. There is
documentation online.

You can access the staging site at https://support.allizom.org/

See what's deployed

Code of Conduct

By participating in this project, you're agreeing to uphold the Mozilla Community Participation Guidelines. If you need to report a problem, please see our CODE_OF_CONDUCT.md guide.

Development

To get Kitsune running locally all you really need is to have Docker and Docker Compose installed,
and follow the following steps.

  1. Fork this repository & clone it to your local machine.

    git clone https://github.com/mozilla/kitsune.git
    
  2. Pull base Kitsune Docker images, run collectstatic, create your database, and install node and bower packages.

    make init
    
  3. Run Kitsune.

    make run
    

    This will produce a lot of output (mostly warnings at present). When you see the following the server will be ready:

    web_1, Starting development server at http://0.0.0.0:8000/
    web_1, Quit the server with CONTROL-C.
    

The running instance will be located at http://localhost:8000/ unless you specified otherwise,
and the administrative control panel will be at http://localhost:8000/admin/.

Another way you might choose to run the app (step 3 above) is by getting a shell in the container and then manually
running the Django dev server from there. This should make frequent restarts of the server a lot
faster and easier if you need to do that:

make runshell
bin/run-dev.sh

The end result of this method should be the same as using make run, but will potentially aid in debugging
and act much more like developing without Docker as you may be used to. You should use make runshell here
instead of make shell as the latter does not bind port 8000 which you need to be able to load the site.

Run make help to see other helpful commands.

Compiling LESS files

By default, the .less files do not compile in local development because it impacts load times on OSX. If you are working on .less files, you can enable compilation with the following environment variable:

echo "PIPELINE_COLLECTOR_ENABLED=True" >> .env

The Admin

After the above you can do some optional steps if you want to use the admin:

  • Enable the admin control panel

    echo "ENABLE_ADMIN=True" >> .env
    
  • Create a superuser

    docker-compose exec web ./manage.py createsuperuser
    
  • Create some data

    docker-compose exec web ./manage.py generatedata
    
  • Update product details

    docker-compose exec web ./manage.py update_product_details
    

Get Search Working

First, make sure you have run the "Create some data" step above.

  1. Enter the web container: docker-compose exec web bash
  2. Build the indicies: ./manage.py esreindex (You may need to pass the --delete flag)
  3. Precompile the nunjucks templates: ./manage.py nunjucks_precompile

主要指標

概覽
名稱與所有者mozilla/kitsune
主編程語言Python
編程語言HTML (語言數: 10)
平台
許可證BSD 3-Clause "New" or "Revised" License
所有者活动
創建於2010-01-26 18:53:57
推送於2025-06-04 18:55:59
最后一次提交
發布數154
最新版本名稱1.3.5 (發布於 )
第一版名稱2.0 (發布於 2010-04-28 10:42:34)
用户参与
星數1.4k
關注者數340
派生數763
提交數11.2k
已啟用問題?
問題數584
打開的問題數21
拉請求數3536
打開的拉請求數15
關閉的拉請求數2288
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?