https://github.com/kkapsner/simplecalendar
A simple readonly ics calendar to share public dates
https://github.com/kkapsner/simplecalendar
Last synced: about 1 year ago
JSON representation
A simple readonly ics calendar to share public dates
- Host: GitHub
- URL: https://github.com/kkapsner/simplecalendar
- Owner: kkapsner
- License: mit
- Created: 2022-12-01T21:04:23.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-04T18:20:12.000Z (over 1 year ago)
- Last Synced: 2025-02-09T12:25:36.264Z (over 1 year ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple calendar
This is a very simple read only calendar to publish public dates in a ics format.
## Setup
1. Upload [kamiKatze](https://github.com/kkapsner/kamiKatze/) to the web server if not already present.
2. Upload all the files to the web server.
3. Create a `config.ini` according to `config.ini.sample`
4. Fill`data.txt` according to `data.txt.sample` with the events in the calendar
### Remark
The folder "www" has to be accessible from the internet. The folder "calendar" should not be accessible.
## Requirements
### PHP 8
Development and testing was done in PHP 8.1.12
### kamiKatze
The PHP library [kamiKatze](https://github.com/kkapsner/kamiKatze/) is used.
The path to kamiKatze has to be stored in `$_SERVER["KAMIKATZE_LOCATION"]`. The easiest way to do this is define the following in the .htaccess:
```
SetEnv KAMIKATZE_LOCATION "/absolute/path/to/kamiKatze"
```