A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

71 lines
2.6 KiB

  1. # This is a sample config file for Calefaction.
  2. # Copy this to config.yml and modify it to set up your website.
  3. # You must restart the server after making any changes.
  4. site:
  5. # Full canonical server name; include port if not default:
  6. canonical: example.com
  7. # Assume HTTPS? This affects how URLs are generated, not how the site is
  8. # served (setting up TLS is your responsibility):
  9. https: yes
  10. # Contact info reported in the User-Agent when making requests to EVE's API:
  11. contact: webmaster@example.com
  12. corp:
  13. # You need to reset the database if this value is changed in the future.
  14. # Find your corp's ID at e.g. https://zkillboard.com/corporation/917701062/:
  15. id: 123456789
  16. # Full corp name (doesn't need to match in-game name exactly, but it should):
  17. name: My Corp Name Here
  18. modules:
  19. # Most site functionality comes from optional modules selected based on your
  20. # corp's needs. They are located in the calefaction/modules/ directory. Their
  21. # order below determines how they appear in the navigation menu.
  22. # List of enabled modules:
  23. enabled:
  24. - campaigns
  25. - map
  26. - members
  27. # Module to show on the home page after users log in:
  28. home: campaigns
  29. auth:
  30. # Secure session signing key. Never share with anyone. Can generate with
  31. # "import base64, os; base64.b64encode(os.urandom(24))":
  32. session_key: sEQMbNbxRxHBhyGtt8cuLEMN6sDM1JcP
  33. # You need to create an application at
  34. # https://developers.eveonline.com/applications for this corp's website.
  35. # Set the callback URL to http(s)://<your domain>/login (match the protocol
  36. # with "site.https" above) and the scopes to whatever is required by the
  37. # modules you've enabled. If none of your modules require scopes, select at
  38. # least "publicData".
  39. # SSO client ID:
  40. client_id: a290afea820b8dd8c46d3883898ab66d
  41. # SSO client secret:
  42. client_secret: XXAPGc0LM6wdOJAwSNQmliZ2QhQpoBuUutQY6Rlc
  43. style:
  44. # Default stylesheet from static/styles/*.css:
  45. default: null
  46. # List of enabled stylesheets:
  47. enabled:
  48. - amarr
  49. - caldari
  50. - gallente
  51. - minmatar
  52. welcome: |-
  53. (If you are seeing this message on the public internet, someone forgot to
  54. configure their website. Whoops!)
  55. This message is displayed to anyone who reaches your website without
  56. (or before) logging in.
  57. It's public, so don't give away any secrets. You might want to explain a bit
  58. about your corp, with recruitment information, or invite corp members to log
  59. in, or maybe just say something cryptic.
  60. You can type raw HTML in here. Newlines are ignored, except for double
  61. linebreaks, which are treated as separate paragraphs.