Home
last modified time | relevance | path

Searched full:run (Results 1 – 25 of 126) sorted by relevance

123456

/webtrees/
H A DCONTRIBUTING.md36 * [`composer`](https://getcomposer.org) - to install PHP dependencies, build releases, and run test…
58run `composer install` before starting any development. This loads all the development tools, inc…
60 * You can use a "pre-commit hook" to run checks on your code before you commit them to your local r…
64 …uild the files in `public/js` and `public/css`. You do this with the command `npm run production`.
77 These are created using the command `npm run production`.
87 2. Run `composer install` to update the PHP dependencies.
88 3. Run `npm install` to update the JS and HTML files.
89 4. Run `php -S localhost:8080` and open your browser at [localhost:8080](http://localhost:8080)
96 Then run the tests with `vendor/bin/phpunit`
H A DLICENSE.md53 Some devices are designed to deny users access to install or run
135 produce the work, or an object code interpreter used to run it.
139 work) run the object code and to modify the work, including scripts to
162 permission to run the unmodified Program. The output from running a
167 You may make, run and propagate covered works that you do not
441 run a copy of the Program. Ancillary propagation of a covered work
452 receives a license from the original licensors, to run, modify and
492 make, use, sell, offer for sale, import and otherwise run, modify and
H A DREADME.md171 Then run this command::
176 Then run the commands:
179 * npm run production
181 You will need to re-run the second of these any time you modify the file `webtrees.js`.
H A Dindex.php24 return Webtrees::new()->run(PHP_SAPI);
/webtrees/.github/workflows/
H A Dphpstan.yaml6 run:
25 - run: composer validate
27 - run: composer global config --no-plugins allow-plugins.phpstan/extension-installer true
29 …- run: composer global require phpstan/phpstan phpstan/extension-installer phpstan/phpstan-depreca…
31 - run: composer install --no-progress
33 - run: ~/.composer/vendor/bin/phpstan analyze --no-progress --level=max app index.php
H A Dphpcs.yaml6 run:
25 - run: composer validate
27 - run: composer global require squizlabs/php_codesniffer
30run: ~/.composer/vendor/bin/phpcs --colors --standard=PSR12 --exclude=Generic.Files.LineLength --e…
33 run: ~/.composer/vendor/bin/phpcs --colors --extensions=css resources/css
H A Dphpunit.yaml6 run:
27 - run: composer validate
29 - run: composer install --no-progress
31 - run: vendor/bin/phpunit --coverage-clover=tests/coverage.xml
/webtrees/app/Services/
H A DMigrationService.php36 * Run a series of scripts to bring the database schema up to date.
77 (new SeedUserTable())->run();
78 (new SeedGedcomTable())->run();
79 (new SeedDefaultResnTable())->run();
H A DTimeoutService.php29 //Long-running scripts run in small chunks
32 // Seconds until we run out of time
57 // If there's no time limit, then we can't run out of time.
/webtrees/app/Http/Middleware/
H A DDoHousekeeping.php32 * Run the housekeeping service at irregular intervals.
50 // Run the cleanup every N requests.
73 // Run the cleanup after random page requests.
82 * Run the various housekeeping services.
H A DRouter.php126 // This middleware cannot run until after the routing, as it needs to know the route.
135 // Finally, run the handler using middleware
H A DRequestHandler.php32 * Middleware to run a request-handler.
H A DCheckForNewVersion.php52 // Only run on full page requests.
H A DReadConfigIni.php64 // No configuration file? Run the setup wizard to create one.
/webtrees/tests/app/Http/RequestHandlers/
H A DRedirectReportEnginePhpTest.php53 ['ged' => 'tree1', 'action' => 'run', 'report' => 'foo/report.xml'],
63 'https://www.example.com/index.php?route=%2Ftree1%2Freport-run%2Ffoo',
80 ['ged' => 'tree1', 'action' => 'run', 'report' => 'foo/report.xml']
/webtrees/app/Schema/
H A DSeedInterface.php28 * Run the seeder.
32 public function run(): void; function
H A DSeedDefaultResnTable.php38 * Run the seeder.
42 public function run(): void function in Fisharebest\\Webtrees\\Schema\\SeedDefaultResnTable
H A DSeedGedcomTable.php30 * Run the seeder.
34 public function run(): void function in Fisharebest\\Webtrees\\Schema\\SeedGedcomTable
H A DSeedUserTable.php30 * Run the seeder.
34 public function run(): void function in Fisharebest\\Webtrees\\Schema\\SeedUserTable
/webtrees/app/
H A DWebtrees.php243 * Run the application.
245 public function run(string $php_sapi): int|ResponseInterface function in Fisharebest\\Webtrees\\Webtrees
261 return $console->loadCommands()->bootstrap()->run();
/webtrees/tests/
H A DTestCase.php133 * Things to run before every test.
168 * Things to run after every test
/webtrees/resources/views/help/
H A Drelationship-privacy.phtml18 …ger path lengths require a lot of calculation, which can make your website run slowly for these us…
/webtrees/app/Report/
H A DAbstractRenderer.php173 * Run the report.
177 abstract public function run(): void; function in Fisharebest\\Webtrees\\Report\\AbstractRenderer
/webtrees/app/Http/RequestHandlers/
H A DDataFixSelect.php33 * Run a data-fix.
H A DReportListPage.php63 $title = I18N::translate('Choose a report to run');

123456