Shoozza / alakajam

Website powering the Alakajam! game making community

Home Page:https://alakajam.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CircleCI

Initial setup

Requirement: NodeJS 10+

  1. npm install --no-optional
  2. npm start
  3. Browse to http://localhost:8000
  4. You can login as administrator/administrator

Tips:

  • If npm fails to install sqlite3 on Windows, run npm i -g --production windows-build-tools and retry. You may need to upgrade NodeJS to a recent version.
  • For better performance, consider editing config.js to set up a PostgreSQL database.

See the wiki for additional documentation.

How do I...

...Debug the server with VSCode

Put this in .vscode/launch.json:

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Debug Alakajam!",
      "type": "node",
      "request": "launch",
      "args": ["${workspaceFolder}\\server\\index.ts"],
      "runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only", "-r", "tsconfig-paths/register"],
      "sourceMaps": true,
      "cwd": "${workspaceRoot}",
      "protocol": "inspector",
      "outputCapture": "std"
    }
  ]
}

...Reset the data

  1. Stop the server and delete the data/ folder.
  2. If using PostgreSQL, also empty your database (example: drop schema public cascade; create schema public;).

...Enable picture resizing

Run npm install without the --no-optional flag to try and set up the sharp dependency. If it fails to install (especially on Windows), follow the instructions to install the sharp dependencies, then try npm install again.

...Run only one unit test

Run only partial tests by appending the required file as an argument. For instance:

npm run test:unit -- user.service

About

Website powering the Alakajam! game making community

https://alakajam.com/

License:Other


Languages

Language:TypeScript 93.0%Language:SCSS 4.4%Language:JavaScript 1.1%Language:HTML 0.8%Language:Shell 0.7%Language:Batchfile 0.0%