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.
 
 
 
 
 

51 lines
1.9 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. corp:
  11. # You need to reset the database if this value is changed in the future.
  12. # Find your corp's ID at e.g. https://zkillboard.com/corporation/917701062/:
  13. id: 123456789
  14. # Full corp name (doesn't need to match in-game name exactly, but it should):
  15. name: My Corp Name Here
  16. auth:
  17. # Secure session signing key. Never share with anyone. Can generate with
  18. # "import base64, os; base64.b64encode(os.urandom(24))":
  19. session_key: sEQMbNbxRxHBhyGtt8cuLEMN6sDM1JcP
  20. # You need to create an application at
  21. # https://developers.eveonline.com/applications for this corp's website.
  22. # Set the callback URL to http(s)://<your domain>/login (match the protocol
  23. # with "site.https" above) and the scopes to:
  24. # - publicData
  25. # - ...
  26. # SSO client ID:
  27. client_id: a290afea820b8dd8c46d3883898ab66d
  28. # SSO client secret:
  29. client_secret: XXAPGc0LM6wdOJAwSNQmliZ2QhQpoBuUutQY6Rlc
  30. # Default stylesheet from static/styles/*.css;
  31. # one of "amarr", "caldari", "gallente", "minmatar", or create your own:
  32. style: null
  33. welcome: |-
  34. (If you are seeing this message on the public internet, someone forgot to
  35. configure their website. Whoops!)
  36. This message is displayed to anyone who reaches your website without
  37. (or before) logging in.
  38. It's public, so don't give away any secrets. You might want to explain a bit
  39. about your corp, with recruitment information, or invite corp members to log
  40. in, or maybe just say something cryptic.
  41. You can type raw HTML in here. Newlines are ignored, except for double
  42. linebreaks, which are treated as separate paragraphs.