https://github.com/wind-press/wind.press
The WindPress website
https://github.com/wind-press/wind.press
Last synced: 5 months ago
JSON representation
The WindPress website
- Host: GitHub
- URL: https://github.com/wind-press/wind.press
- Owner: wind-press
- License: mit
- Created: 2024-10-14T19:14:36.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-11-12T18:18:11.000Z (8 months ago)
- Last Synced: 2025-11-12T20:22:32.685Z (8 months ago)
- Language: Vue
- Homepage: https://wind.press
- Size: 238 MB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wind.press
Welcome to the WindPress website repository available on [wind.press](https://wind.press).
> This repository is derived from the Nuxt website repository with modifications.
## Setup
Make sure to enable corepack and install the dependencies:
```bash
corepack enable
pnpm install
```
Copy the `.env.example` file to `.env`:
```bash
cp .env.example .env
```
## Development
Start the development server:
```bash
pnpm dev
```
### Add a Showcase
To list a showcase, add a file in the [./content/showcase](./content/showcase) directory.
Make sure to start the development server in order to generate the screenshot for the showcase and go to http://localhost:3000/showcase to see the result.
If you want to use your own custom screenshot, use the `screenshotUrl` property.
To regenerate the image, delete the generated one in `public/assets/templates`.
### Add a Tailwind CSS Template
To list a Tailwind CSS template, add a file in the [./content/templates](./content/templates) directory.
Make sure to start the development server in order to generate the screenshot for the template and go to http://localhost:3000/templates to see the result.
If you want to update the url where we take the automated screenshot, use the `screenshotUrl` property.
To regenerate the image, delete the generated one in `public/assets/templates`.
## Production
In order to build the application for production, you need to have a [Nuxt UI Pro](https://ui.nuxt.com/pro?aff=GZ5Zd) license and set the `NUXT_UI_PRO_LICENSE` variable in the `.env` file.
Note that this is not required to run in development and contribute to the WindPress website or documentation.
Build the application for production:
```bash
pnpm generate
```
## License
[MIT License](./LICENSE)