https://github.com/zobweyt/solid-start-auth-example
https://github.com/zobweyt/solid-start-auth-example
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zobweyt/solid-start-auth-example
- Owner: zobweyt
- Created: 2024-08-16T14:01:04.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-01T20:57:58.000Z (7 months ago)
- Last Synced: 2025-02-02T06:28:55.860Z (5 months ago)
- Language: TypeScript
- Size: 148 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# solid-start-auth-example
Open your terminal and run the following command to create a `.env` file and generate a `SESSION_SECRET`:
```bash
echo "SESSION_SECRET=\"$(head -c32 /dev/urandom | base64)\"" > .env
```After creating the `.env` file, install the necessary project dependencies by running:
```
pnpm i
```Finally, start the development server and open it in your default web browser with the following command:
```
pnpm dev -- --open
```