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.
 
 
 
 
 

70 lines
2.5 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.
  38. # SSO client ID:
  39. client_id: a290afea820b8dd8c46d3883898ab66d
  40. # SSO client secret:
  41. client_secret: XXAPGc0LM6wdOJAwSNQmliZ2QhQpoBuUutQY6Rlc
  42. style:
  43. # Default stylesheet from static/styles/*.css:
  44. default: null
  45. # List of enabled stylesheets:
  46. enabled:
  47. - amarr
  48. - caldari
  49. - gallente
  50. - minmatar
  51. welcome: |-
  52. (If you are seeing this message on the public internet, someone forgot to
  53. configure their website. Whoops!)
  54. This message is displayed to anyone who reaches your website without
  55. (or before) logging in.
  56. It's public, so don't give away any secrets. You might want to explain a bit
  57. about your corp, with recruitment information, or invite corp members to log
  58. in, or maybe just say something cryptic.
  59. You can type raw HTML in here. Newlines are ignored, except for double
  60. linebreaks, which are treated as separate paragraphs.