the next generation of rockfic.com
Go to file
2023-10-02 15:55:38 -04:00
.vscode chore(config): add editor and prettier config files 2023-09-26 23:55:16 -04:00
components refactor(components): remove commented code from editor component 2023-10-01 19:37:31 -04:00
composables refactor(api): refactor app to use pure jwts instead of cookies 2023-09-28 21:55:19 -04:00
layouts feat: create default app layout 2023-09-25 19:35:03 -04:00
lib refactor: add utility functions 2023-10-02 15:55:38 -04:00
models feat(db/models): create model to store sidebar items in database 2023-09-25 19:50:50 -04:00
pages feat(pages): add (WIP!!!) forum page 2023-09-25 19:56:21 -04:00
public style: format public assets 2023-09-30 00:14:16 -04:00
server refactor(api): update function calls 2023-10-02 15:46:56 -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 chore: add typescript shims 2023-09-25 19:29:35 -04:00
.editorconfig chore(config): add editor and prettier config files 2023-09-26 23:55:16 -04:00
.gitignore chore(workspace): ignore tmp/ and stories/ directories 2023-09-26 23:56:10 -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 refactor: modify top-level app.vue 2023-09-25 19:37:33 -04:00
nuxt.config.ts chore(nuxt): add runtimeconfig, css and modules to nuxt config 2023-09-25 19:27:44 -04:00
package.json chore(deps): add date-fns package 2023-09-27 00:00:16 -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(config): tweak tsconfig 2023-09-25 19:55:31 -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.