philpax / plugin-platform

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

plugin-platform

(WIP) Dalamud plugin platform website for sharing presets and possibly also this stuff.

Contributing

Dependencies:

  • Node v16.14.0+
  • Yarn v1.22.18+
  • Go v1.19+

Shell 1:

cd server
go run ./cmd/platform/main.go migrate up
go run ./cmd/platform/main.go serve

Shell 2:

cd client
yarn
yarn dev -- --open

OAuth2

Open up the admin UI at http://127.0.0.1:8090/_/ and go to the Settings page. Under Auth Providers, select an option other than Email/Password and add your application credentials from the provider. After the provider is enabled and the changes are saved, the login page should show the provider as a login option.

To add new login options, PR changes to PocketBase upstream.

Adding data

Open up the admin UI and go to the Collections page. Select a collection and add a record. Users can be added manually under the Users page, or by going through the standard registration process.

Frontend development

For most changes, refer to the SvelteKit documentation.

Backend development

For most changes, refer to the PocketBase documentation.

Schema modifications

Open up the admin UI and make your changes, then run:

cd server/pkg
go run ../cmd/platform/main.go --dir="../pb_data" migrate collections

Note that PocketBase uses SQLite (though I suspect this can be customized at the expense of having to configure another database), so certain features like schema-level permissions are not possible. These should instead be implemented through denormalization and application-level permissions.

Migrations can be applied by running:

cd server
go run ./cmd/platform/main.go migrate up

About

License:GNU Affero General Public License v3.0


Languages

Language:Svelte 41.1%Language:Go 36.7%Language:TypeScript 20.7%Language:JavaScript 1.2%Language:HTML 0.3%