A simple webapp to manage cronjobs
Go to file
Jeroen De Meerleer f77d487ab2
UPDATED DEPENDENCIES
2023-01-04 11:24:14 +01:00
.github/issue_template ENHANCEMENT: created issue_templates 2022-06-24 14:20:03 +02:00
assets NEW FEATURE: settings page 2022-09-08 12:28:38 +02:00
bin ENHANCEMENT: using symfony framework 2022-04-27 17:19:54 +02:00
config ENHANCEMENT: translating with crowdin 2022-09-16 12:37:07 +02:00
migrations ENHANCEMENT: Saving locale in database 2022-09-07 15:20:28 +02:00
public ENHANCEMENT: using symfony framework 2022-04-27 17:19:54 +02:00
src BUGFIX: Memory Limit could be too low when running daemon script 2022-12-19 11:01:21 +01:00
templates NEW FEATURE: settings page 2022-09-08 12:28:38 +02:00
translations updated translations 2022-10-04 13:19:18 +02:00
.env.sample ENHANCEMENT: added demo mode 2022-07-01 12:00:36 +02:00
.gitignore Returning to webpack 2022-08-23 13:28:30 +02:00
CHANGELOG.md UPDATED CHANGELOG 2022-12-12 15:01:34 +01:00
LICENSE.md First implementation of the framework 2021-04-06 19:33:26 +02:00
README.md Updated readme 2022-09-07 12:09:49 +02:00
composer.json UPDATED DEPENDENCIES 2022-12-12 14:47:48 +01:00
composer.lock UPDATED DEPENDENCIES 2023-01-04 11:24:14 +01:00
install.sh UPDATED README 2022-09-05 16:13:31 +02:00
package-lock.json UPDATED DEPENDENCIES 2023-01-04 11:24:14 +01:00
package.json UPDATED DEPENDENCIES 2022-12-12 14:47:48 +01:00
symfony.lock ENHANCEMENT: translating with crowdin 2022-09-16 12:37:07 +02:00
version ENHANCEMENT: Setting version tag in footer 2022-09-06 13:45:32 +02:00
webpack.config.js NEW FEATURE: settings page 2022-09-08 12:28:38 +02:00

README.md

Webcron Management

(c) 2017-2018, 2021- Jeroen De Meerleer me@jeroened.be

Webcron management is an easy-to-use interface to manage cronjobs running on a publicly available http-location.

Building

Requirements for build-server

  • php <= 8.1 (incl composer <= 2, ext-pcntl, ext-openssl, ext-intl)
  • NodeJS <= 16.0 (incl. npm <= 8)

Building

Please run following command on the build server

$ composer install --no-dev --optimize-autoloader
$ npm install
$ npm run build
$ rm -rf node_modules # Node modules are only required for building

Installation

Requirements

  • php <= 8.1
    • ext-openssl
    • ext-intl
    • ext-pcntl (highly recommended)
  • MariaDB
  • SSH-access to the server
  • Ability to change the webroot directory
  • Ability to run a script as daemon (eg. supervisor or systemd units)

Installation

  1. Create a build yourself or download the build from the releases page

  2. Upload the build to the webserver.

  3. Set up your webhosting to use the /public directory as web root

  4. Create the .env file by copying .env.sample to .env and change the values

  5. Run php bin/console doctrine:migrations:migrate to create or migrate the database

  6. Create a first user by running php bin/console webcron:user add

  7. Set up the daemon script using systemd, supervisord or similar system

    If this is not possible running the daemon using a cronjob is still possible using below gist (Not recommended)

0 * * * * cd /path/to/webcron/ && php webcron daemon --time-limit=3600 > /dev/null 1&>2

Upgrading

Requirements

Same requirements and deploying

Procedure

  1. Remove all files except .env from the webserver
  2. Upload the new build to the webserver
  3. Run php bin/console doctrine:migrations:migrate to migrate the database

Common pitfalls

I can't do an automatic system upgrade!

Doing a system upgrade requires sudo which has a certain number security measurements. To enable running anything with sudo (eg. sudo apt dist-upgrade -y) the user needs to be able to run sudo without tty and password.

TL;DR