KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#deepseek-harness
#dsh-plugin
#open-source
#ai
#cli
#dsh
#claude-code
#codex
#developer-tools
#react
web-doc
★ 39
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
iphone-3d-programming
:
sample code from my O'Reilly book
json-schema-browser
:
API Explorer to browse JSON Schema based API's
libpurple-core-answerscripts
:
Most-hackable Pidgin plugin! Framework for hooking scripts to respond received messages for various libpurple clients such as pidgin or finch
fuzzycd
:
Glide across your filesystem with ease.
LinuxNativeNotification
:
A fork project of Chromify-OSD
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
web-doc
?
Download (.md)
# doc.php.net This repository contains files of doc.php.net, the site for documentation contributors to find useful guides, tools, statistics etc. ## Running a local version This can be run using PHP's [built-in web server](https://www.php.net/features.commandline.webserver) for local development. For the guide pages to work, you also need a local clone of the `doc-base` repository. To generate the translation status, you'll also need the English version of the documentation and whatever languages you want to generate data about. ```sh # Leave empty to do all languages, must include 'en' if any listed $ PHP_LANGS="" $ git clone https://github.com/php/web-doc.git $ git clone https://github.com/php/doc-base.git $ php doc-base/languages.php --clone ${PHP_LANGS:---all} $ SQLITE_DIR="${PWD}/web-doc/sqlite" $ mkdir -p ${SQLITE_DIR} $ php doc-base/scripts/translation/genrevdb.php ${SQLITE_DIR}/status.sqlite.tmp ${PHP_LANGS:-$(php doc-base/languages.php --all --list-ssv)} $ cd web-doc $ git clone https://github.com/php/web-shared.git shared $ BASE_DOCS_PATH="${PWD}/../doc-base/docs" php -S localhost:8080 router.php ```