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.
 
 
 
 
 

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