Skip to content

Commit

Permalink
Merge pull request #94 from denoland/docs-extendeding-saaskit
Browse files Browse the repository at this point in the history
docs: add "Extending Deno SaaSKit" section
  • Loading branch information
iuioiua authored Apr 17, 2023
2 parents 6654b15 + 4052369 commit af3dcc5
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,25 @@ TODO

TODO

## Extending Deno SaaSKit

### Blog

To create a new blog post, create a Markdown (`.md`) file within
[`/data/posts/`](data/posts) with the filename as the slug. E.g.
`/data/blog/hello-there.md` will correspond to the `/blog/hello-there` route.
See [`/data/posts/`](data/posts) for examples.

Post properties are to be added to the starting Front Matter section of the
Markdown file. See the `Post` interface in [`/utils/posts.ts`](utils/posts.ts)
for a full list of properties and their types.

### Themes

You can customize theme options such as spacing, color, etc. By default, Deno
SaaSKit comes with `primary` and `secondary` colors predefined within
`twind.config.ts`. Change these values to match your desired color scheme.

## Architecture

### Authentication
Expand All @@ -196,13 +215,6 @@ TODO:
- Payments
- Testing

## Extending Deno SaaSKit

TODO:

- Blog
- Themes

## Contributing

When submitting a pull request, please:
Expand Down

0 comments on commit af3dcc5

Please sign in to comment.