Merge branch 'master' of git.076.ne.jp:TechnicalSuwako/kensaku.online

このコミットが含まれているのは:
守矢諏訪子 2022-06-05 03:06:53 +09:00
コミット 2bd992ae5f
3個のファイルの変更5行の追加18行の削除

ファイルの表示

@ -1,18 +1 @@
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
0 2 * * 0 root php /path/to/the/kensaku.online/tool/crawler.php
0 2 * * 0 root php /www/active/kensaku.online/tool/crawler.php

ファイルの表示

@ -1,6 +1,8 @@
DROP DATABASE IF EXISTS `kensaku`;
CREATE DATABASE `kensaku` CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
USE `kensaku`;
DROP TABLE IF EXISTS `website`;
CREATE TABLE `website` (
`id` int(10) NOT NULL AUTO_INCREMENT,

ファイルの表示

@ -1,3 +1,5 @@
USE `kensaku`;
INSERT INTO `website` (url) VALUES ('https://076.moe');
INSERT INTO `website` (url) VALUES ('https://technicalsuwako.moe');