Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastiandotdev/developer
The red social Open Sources Built with love and nostalgia 🐱
https://github.com/sebastiandotdev/developer
Last synced: 25 days ago
JSON representation
The red social Open Sources Built with love and nostalgia 🐱
- Host: GitHub
- URL: https://github.com/sebastiandotdev/developer
- Owner: sebastiandotdev
- Created: 2023-10-19T19:42:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-27T02:05:57.000Z (about 1 year ago)
- Last Synced: 2024-08-26T18:53:52.085Z (2 months ago)
- Language: TypeScript
- Homepage:
- Size: 448 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Social Developer ⚡️
The red social Open Sources Built with love and nostalgia 🐱
## Guide
#### Add Integrations and deployment
Use the `pnpm qwik add` command to add additional integrations.
```shell
pnpm qwik add
```#### Development
Development mode uses [Vite's development server](https://vitejs.dev/). The `dev` command will server-side render (SSR) the output during development.
```shell
pnpm start
```> Note: during dev mode, Vite may request a significant number of `.js` files. This does not represent a Qwik production build.
#### Preview
The preview command will create a production build of the client modules, a production build of `src/entry.preview.tsx`, and run a local server. The preview server is only for convenience to preview a production build locally and should not be used as a production server.
```shell
pnpm preview
```#### Test
```shell
pnpm test
```#### Production
The production build will generate client and server modules by running both client and server build commands. The build command will use Typescript to run a type check on the source code.
```shell
pnpm build
```