2023-02-10 09:40:44 +00:00
|
|
|
## How to start
|
|
|
|
```
|
|
|
|
yarn install
|
|
|
|
yarn start
|
|
|
|
```
|
|
|
|
with different backends
|
|
|
|
```
|
|
|
|
yarn run start:local
|
|
|
|
yarn run start:production
|
|
|
|
yarn run start:staging
|
|
|
|
```
|
2022-11-27 18:36:45 +00:00
|
|
|
|
2023-02-10 09:40:44 +00:00
|
|
|
## Useful commands
|
|
|
|
run checks
|
|
|
|
```
|
|
|
|
yarn run check
|
|
|
|
```
|
|
|
|
type checking with watch
|
|
|
|
```
|
|
|
|
yarn run typecheck:watch
|
|
|
|
```
|
|
|
|
## Code generation
|
2022-11-27 18:36:45 +00:00
|
|
|
|
2023-02-10 09:40:44 +00:00
|
|
|
generate new SolidJS context:
|
2022-09-09 11:53:35 +00:00
|
|
|
```
|
2023-02-10 09:40:44 +00:00
|
|
|
npx hygen context new NewContextName
|
2022-09-09 11:53:35 +00:00
|
|
|
```
|