the next generation of rockfic.com
Go to file
2023-10-10 21:46:20 -04:00
.vscode chore(workspace): change launch.json to launch vivaldi 2023-10-09 18:46:06 -04:00
components fix(components): fix bands picker to be searchable by label/name 2023-10-10 21:46:20 -04:00
composables refactor(composables): 2023-10-05 02:10:53 -04:00
layouts refactor(components): reconfigure sidebar to be perfect(tm) 2023-10-05 19:56:14 -04:00
lib feat(client-side): add debounced autosave function for story form 2023-10-09 17:21:27 -04:00
models refactor(db/models): update color field in sidebarentry to accept either a string or an enum 2023-10-05 02:05:12 -04:00
pages feat(pages): add (WIP!!!) forum page 2023-09-25 19:56:21 -04:00
plugins refactor(server/middleware): move common logic for maintaining a database connection to another file 2023-10-02 16:08:12 -04:00
public chore: create avatar image directory 2023-10-03 00:53:53 -04:00
server refactor(server/middleware): update middlewares to use winston logger instead of plain console.log 2023-10-05 02:07:05 -04:00
stories chore: add .gitkeep files totmp/ and stories/ directories 2023-10-01 19:16:24 -04:00
tmp chore: add .gitkeep files totmp/ and stories/ directories 2023-10-01 19:16:24 -04:00
typings fix(typing): declare modules for untyped dependencies 2023-10-05 02:01:31 -04:00
.editorconfig chore(config): add editor and prettier config files 2023-09-26 23:55:16 -04:00
.gitignore chore(workspace): update gitignore 2023-10-03 01:08:37 -04:00
.npmrc initialize with nuxt 2023-09-23 15:58:51 -04:00
.prettierignore chore(config): add editor and prettier config files 2023-09-26 23:55:16 -04:00
.prettierrc.json chore(config): add editor and prettier config files 2023-09-26 23:55:16 -04:00
app.vue perf(pages): import vue-recaptcha on a per-page basis 2023-10-05 20:02:43 -04:00
nuxt.config.ts chore(nuxt): update nuxt config 2023-10-05 02:09:17 -04:00
package.json chore(deps): add sharp, nuxt-security and winston dependencies 2023-10-03 01:00:29 -04:00
pnpm-lock.yaml chore(deps): add new dependencies 2023-09-25 19:38:17 -04:00
README.md initialize with nuxt 2023-09-23 15:58:51 -04:00
tsconfig.json chore(workspace): allow implicit this in tsconfig 2023-10-03 01:20:29 -04:00

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.