An accounting dashboard for saxo and danske bank
  • TypeScript 96.2%
  • CSS 3.1%
  • Nix 0.7%
Find a file
Joshua Niemelä 1a07595042 Add tags
2026-06-06 16:37:24 +02:00
public Add first commit 2026-05-14 10:23:46 +02:00
scripts Update 2026-06-05 09:28:08 +02:00
src Add tags 2026-06-06 16:37:24 +02:00
.envrc Add import logic for csvs, imported both company and private 2026-05-15 09:57:07 +02:00
.gitignore Added danske bank parser 2026-05-14 11:13:02 +02:00
.prettierrc format 2026-05-18 21:33:01 +02:00
docker-compose.yml Add first commit 2026-05-14 10:23:46 +02:00
flake.lock Add flake 2026-05-13 12:03:00 +02:00
flake.nix Add supersession journaling 2026-05-19 19:21:22 +02:00
package.json remove startup from solid 2026-05-18 22:01:51 +02:00
pnpm-lock.yaml Fix vulnerabilities 2026-05-23 15:04:37 +02:00
pnpm-workspace.yaml Modify policies for packages 2026-05-24 09:13:13 +02:00
README.md Add first commit 2026-05-14 10:23:46 +02:00
tsconfig.json Add import logic for csvs, imported both company and private 2026-05-15 09:57:07 +02:00
vite.config.ts Add supersession journaling 2026-05-19 19:21:22 +02:00

SolidStart Template

The with-auth example demonstrates native, context-based authentication featuring OAuth and email-password login.

Installation

Generate the with-auth template using your preferred package manager

# using npm
npm create solid@latest -- -s -t with-auth
# using pnpm
pnpm create solid@latest -s -t with-auth
# using bun
bun create solid@latest --s --t with-auth

Configuration

  1. Rename .env.example to .env

  2. For Discord OAuth2 to work, update .env with your credentials:

    DISCORD_ID=your-discord-client-id
    DISCORD_SECRET=your-discord-client-secret
    
    • Create a Discord application at discord.com/developers/applications to get your Client ID and Secret.
    • In the app's OAuth2 → URL Generator or Redirects section, add the following redirect URI:
      http://localhost:3000/api/oauth/discord
      
  3. To configure additional providers, refer to the start-oauth documentation

This project was created with the Solid CLI