项目作者: TangentFoxy

项目描述 :
(ON HOLD) Kerbal Warfare, a website for managing a turn-based combat game in KSP.
高级语言: MoonScript
项目地址: git://github.com/TangentFoxy/KSS.git
创建时间: 2016-02-17T19:10:11Z
项目社区:https://github.com/TangentFoxy/KSS

开源协议:

下载


Kerbal Warfare

A website for managing a turn-based warfare game in Kerbal Space Program.

Very work-in-progress, but functional.

Setup

  1. Install prerequisites.
    (OpenResty, PostgreSQL, luarocks, moonscript, Lapis)
  2. Setup database(s).
    (for production: kss_live, for development: kss_dev)
  3. Create secret.moon with database password and a secret string.
    (see secret.moon.example for an example)
  4. Place SSL certificate in ssl/.
    (public: fullchain.pem, private: privkey.pem)
  5. Compile moonscript files.
    (run moonc .)
  6. Run migrations.
    (run lapis migrate [env] (env is production or development))
  7. Start the server.
    (run lapis server [env] (same environments))
  8. Log into the default admin account and change its password.
    (username: admin, password changeme)

Note to self

If you fuck up and lose the postgres password…

  1. sudo -i -u postgres
  2. psql
  3. ALTER USER postgres WITH PASSWORD 'new_password';
  4. \q
  5. exit

And now it’s fixed.