File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -11,26 +11,28 @@ Launch your DeFi app with this starter template, featuring [SolidStart](https://
1111
1212## Getting Started
1313
14- 1 . Install dependencies
14+ 1 . Rename ` .env.example ` to ` .env ` . For production, generate a secure ` SESSION_SECRET ` with
1515
1616 ``` bash
17- # use preferred package manager
18- npm install
17+ openssl rand -hex 32
1918 ```
2019
21- 2 . Run the development server
20+ 2 . Install dependencies
2221
2322 ``` bash
2423 # use preferred package manager
25- npm run dev
24+ npm install
2625 ```
2726
28- 3 . Rename ` .env.example ` to ` .env ` . For production, generate a secure ` SESSION_SECRET ` with
27+ 3 . Run the development server
2928
3029 ``` bash
31- openssl rand -hex 32
30+ # use preferred package manager
31+ npm run dev
3232 ```
3333
34+ For more details, refer to SolidStart's [ README.md] ( https://github.com/solidjs/solid-start/blob/main/packages/start/README.md )
35+
3436## Usage
3537
3638To ensure Web3-related logic runs only on the client, use the ` clientOnly ` utility from SolidStart. Here are two ways to implement client-only code:
You can’t perform that action at this time.
0 commit comments