Version 1.0.0

This commit is contained in:
Bad Manners 2024-03-27 22:24:08 -03:00
parent c8c5b64dc8
commit d8164f54d7
2 changed files with 21 additions and 5 deletions

View file

@ -1,16 +1,32 @@
# gallery.badmanners.xyz
Static website built in Astro + Typescript + TailwindCSS.
## Development
### Setup
```bash
git clone https://git.badmanners.xyz/badmanners/gallery.badmanners.xyz
cd git.badmanners.xyz
npm install
```
### Local development
```bash
npm run dev # Start development server (quit with Ctrl-C)
npm run astro -- sync # Rebuild types from src/content/ files
npm run prettier # Prettier formatting
```
### Export story for upload
```bash
npm run export-story -- --output-dir ~/Documents/TO_UPLOAD slug-for-selected-story
npm run export-story -- --output-dir ~/Documents/TO_UPLOAD slug-for-story-to-export
```
## Deployment
### Remote
### Build and deploy to remote
```bash
npm run build

View file

@ -1,7 +1,7 @@
{
"name": "gallery-badmanners-xyz",
"type": "module",
"version": "0.0.1",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",