If you would like to contribute, please feel free to follow the contributing section below and submit a pull request.
This project is a random assortment of string/number lists that I've collected over the years. I've found them useful in various projects, so I've decided to share them. static_lists is built using pnpm, Astro, clsx and the React and Tailwind integrations from Astro. Any changes made are automatically deployed via netlify.
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
pnpm install |
Installs dependencies |
pnpm w dev |
Starts local dev server at localhost:3000 |
pnpm w build |
Build your production site to ./dist/ |
pnpm w preview |
Preview your build locally, before deploying |
pnpm w astro ... |
Run CLI commands like astro add , astro preview |
pnpm w astro --help |
Get help using the Astro CLI |
If you would like to create a new list simply add a new json file to the data directory. The file must take the following structure:
{
"name": "...", // Required
"description": "...", // Optional
"values": ["...", "...", "..."] // Required
}