forked from mirrors/treebird
e831e9e810
FossilOrigin-Name: c6b575ce4c1a8b3cd9482d9fd675de2e5caf1fadccbadeaa34a1997e4f78e761
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
/*
|
|
* This is the config file for RatFE. Any changes you make here requires
|
|
* a recompile, but RatFE shouldn't take long to compile ;)
|
|
*
|
|
* You don't need to understand C, I've created simple types to represent
|
|
* what you need to set without any C knowledge.
|
|
*/
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
#define FALSE 0
|
|
#define TRUE 1
|
|
|
|
/*
|
|
* String: config_canonical_name
|
|
*
|
|
* The software's recognizable name.
|
|
*
|
|
*
|
|
* Example: "RatFE"
|
|
*/
|
|
|
|
static char* const config_canonical_name = "RatFE";
|
|
|
|
/*
|
|
* String: config_instance_url
|
|
*
|
|
* The instances URL which all API calls will be sent to via mastodont-c.
|
|
* This MUST include a slash at the end, and the protocol (like https://) at the
|
|
* beginning
|
|
*
|
|
* Example: https://cum.desupost.soy/
|
|
*/
|
|
static char* const config_instance_url = "https://desuposter.club/";
|
|
|
|
/*
|
|
* Bool: experimental_lookup
|
|
*
|
|
* Uses experimental acct lookup (@user@domain)
|
|
* This allows for the new lookup feature, which can get
|
|
* information for local and federated accounts regardless if signed in.
|
|
*
|
|
* This feature is new and was introduced in the develop branch in 2022.
|
|
* Keep this disabled if running an older pleroma build, or because you just
|
|
* don't want it.
|
|
*/
|
|
static const int config_experimental_lookup = TRUE;
|
|
|
|
#endif // CONFIG_H
|