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.
 
 
 
 
 

66 lines
2.4 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. The
  21. # order below determines how they appear in the navigation menu.
  22. # List of enabled modules:
  23. - campaigns
  24. - map
  25. - members
  26. auth:
  27. # Secure session signing key. Never share with anyone. Can generate with
  28. # "import base64, os; base64.b64encode(os.urandom(24))":
  29. session_key: sEQMbNbxRxHBhyGtt8cuLEMN6sDM1JcP
  30. # You need to create an application at
  31. # https://developers.eveonline.com/applications for this corp's website.
  32. # Set the callback URL to http(s)://<your domain>/login (match the protocol
  33. # with "site.https" above) and the scopes to whatever is required by the
  34. # modules you've enabled.
  35. # SSO client ID:
  36. client_id: a290afea820b8dd8c46d3883898ab66d
  37. # SSO client secret:
  38. client_secret: XXAPGc0LM6wdOJAwSNQmliZ2QhQpoBuUutQY6Rlc
  39. style:
  40. # Default stylesheet from static/styles/*.css:
  41. default: null
  42. enabled:
  43. - amarr
  44. - caldari
  45. - gallente
  46. - minmatar
  47. welcome: |-
  48. (If you are seeing this message on the public internet, someone forgot to
  49. configure their website. Whoops!)
  50. This message is displayed to anyone who reaches your website without
  51. (or before) logging in.
  52. It's public, so don't give away any secrets. You might want to explain a bit
  53. about your corp, with recruitment information, or invite corp members to log
  54. in, or maybe just say something cryptic.
  55. You can type raw HTML in here. Newlines are ignored, except for double
  56. linebreaks, which are treated as separate paragraphs.