From a0aea3890279e8d1d074ec74cc42e8b15fd311a8 Mon Sep 17 00:00:00 2001 From: missytake Date: Tue, 1 Mar 2022 14:46:39 +0100 Subject: [PATCH] [doc] Change label from kibicara to ticketfrei --- CONTRIBUTING.md | 12 ++++++------ COPYING | 1 + DEPLOYMENT.md | 6 +++--- README.md | 16 ++++++++-------- 4 files changed, 18 insertions(+), 17 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f2681cc..35540aa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Kibicara Contribution HowTo +# Ticketfrei Contribution HowTo ## Setup Development Environment @@ -19,8 +19,8 @@ #### Cheatsheet -- Install Kibicara with `pip install .` -- Execute Kibicara with `kibicara` (verbose: `kibicara -vvv`) +- Install Ticketfrei with `pip install .` +- Execute Ticketfrei with `kibicara` (verbose: `kibicara -vvv`) - Interact with Swagger REST-API Documentation: `http://localhost:8000/api/docs` - Test and stylecheck with `tox` - Fix style issues with `black -S kibicara tests` @@ -88,8 +88,8 @@ following pattern: You can use these tags: -- [core] Feature for Kibicara core -- [frontend] Feature for Kibicara frontend +- [core] Feature for Ticketfrei core +- [frontend] Feature for Ticketfrei frontend - [$platform] Feature for platforms, e.g. - [twitter] - [telegram] @@ -170,7 +170,7 @@ To run the platform, you need to import the bot in A bot should have at least this functionality: -- Kibicara REST API (hood admins): +- Ticketfrei REST API (hood admins): - Endpoint for creating a bot associated with a hood - Endpoint for deleting a bot associated with a hood - Endpoint for updating a bot associated with a hood by id diff --git a/COPYING b/COPYING index 4c5f835..9f14628 100644 --- a/COPYING +++ b/COPYING @@ -3,6 +3,7 @@ Copyright (C) 2020 by Cathy Hu Copyright (C) 2020 by Christian Hagenest Copyright (C) 2020 by Martin Rey Copyright (C) 2020 by Maike +Copyright (C) 2022 by missytake Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index 54c0ac2..b89bd12 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -48,7 +48,7 @@ export const environment = { - Build frontend with `cd kibicara/kibicara-frontend && ng build --prod` - Copy the generated frontend to your server to `/home/kibicara/kibicara-frontend`: `scp -r kibicara/kibicara-frontend/dist/kibicara-frontend :/home/kibicara` -### Configure Kibicara Core +### Configure Ticketfrei Core - Write config file to `/etc/kibicara.conf` and replace the domain with yours: ``` database_connection = 'sqlite:////home/kibicara/kibicara.sqlite' @@ -59,7 +59,7 @@ frontend_url = 'https://kibicara.example.com' #### SSL You can use the SSL stuff provided by hypercorn by generating an SSL Certificate and passing its paths to the config options `certfile` and `keyfile` in `/etc/kibicara.conf`. -### Configure Kibicara platforms +### Configure Ticketfrei platforms #### Configure E-Mail (OpenSMTPd + Relay) To send and receive e-mails (necessary for registration confirmation and e-mail bot) you will need an MTA. We use OpenSMTPd: @@ -105,5 +105,5 @@ consumer_secret = '' #### Configure Telegram Nothing to do, because telegram has a nice API. -### Start Kibicara +### Start Ticketfrei Run `kibicara` with your kibicara user. To have more verbose output add `-vvv`. diff --git a/README.md b/README.md index 0faf2f5..eab05df 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -![Angular Frontend](https://github.com/acipm/kibicara/workflows/Angular%20Frontend/badge.svg) -![Python Backend](https://github.com/acipm/kibicara/workflows/Python%20Backend/badge.svg) +![Angular Frontend](https://git.0x90.space/ticketfrei/ticketfrei3/workflows/Angular%20Frontend/badge.svg) +![Python Backend](https://git.0x90.space/ticketfrei/ticketfrei3/workflows/Python%20Backend/badge.svg) -# Kibicara +# Ticketfrei 3 -Kibicara relays messages between different platforms (= social networks). +Ticketfrei relays messages between different platforms (= social networks). In its web interface, a hood admin (= registered user) can create a hood to build a connection between different platforms. @@ -11,18 +11,18 @@ build a connection between different platforms. Users can message a specific hood account on a specific platform (e.g. @xyz on Telegram). This pushes the announcement to all platform accounts of a hood. For example: User A writes a message to @xyz on Telegram (which has been -connected to Kibicara by a hood admin). This publishes the message on e.g. +connected to Ticketfrei by a hood admin). This publishes the message on e.g. Twitter and other platforms which have been connected to the hood. The admin of a hood has to define trigger words and bad words. Messages need to contain a trigger word to be relayed, and must not contain a bad word. -Kibicara needs to be hosted on a server by an instance maintainer. That way, +Ticketfrei needs to be hosted on a server by an instance maintainer. That way, hood admins don't need a server of their own. -## Deploy Kibicara on a production server +## Deploy Ticketfrei on a production server -Read `DEPLOYMENT.md` to learn how to deploy Kibicara. +Read `DEPLOYMENT.md` to learn how to deploy Ticketfrei. ## Contribute!