mirror of
https://github.com/sern-handler/website
synced 2026-06-24 08:42:31 +00:00
27 lines
521 B
Plaintext
27 lines
521 B
Plaintext
---
|
|
title: Project Layout
|
|
description: The layout of a sern project
|
|
sidebar:
|
|
order: 3
|
|
---
|
|
|
|
A project should look like this: <br />
|
|
|
|
import { FileTree } from '@astrojs/starlight/components';
|
|
|
|
<FileTree>
|
|
- src
|
|
- commands/
|
|
- events/
|
|
- plugins/ # created automatically if running `sern plugins`
|
|
- index.js
|
|
- config.js # configuration for your entire application
|
|
- .env
|
|
- .gitignore
|
|
- bun.lockb
|
|
- package.json
|
|
- README.md
|
|
- sern.config.json
|
|
- jsconfig.json # tsconfig.json if you are using typescript
|
|
</FileTree>
|