the next generation of rockfic.com
Go to file
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ ff0787f75e
refactor(components): change story overview card
make it show actions at the bottom depending on a prop `showActions`
2023-12-31 01:51:51 -05:00
.more-ci refactor(ci/scripts): disable debugging 2023-12-28 19:58:56 -05:00
.run chore(workspace): create webstorm run configurations 2023-12-09 17:32:26 -05:00
.vscode chore(workspace): add recommended extensions for vscode 2023-12-09 17:44:16 -05:00
components refactor(components): change story overview card 2023-12-31 01:51:51 -05:00
composables style(*): cleanup unused imports 2023-12-29 20:11:07 -05:00
layouts fix(nuxt): unify error page and app styles 2023-12-30 19:17:51 -05:00
lib refactor(components): create story actions component and related functions 2023-12-31 01:50:35 -05:00
models revert(db/models): re-add & Document to PopulatedDoc type parameters 2023-12-30 00:46:11 -05:00
pages fix(pages): import storyForm from new path 2023-12-30 17:04:18 -05:00
plugins style(*): cleanup unused imports 2023-12-29 20:11:07 -05:00
public revert(nuxt): move avatar dir back to public 2023-12-30 19:36:36 -05:00
server feat(api): add dedicated route to fetch user's own stories 2023-12-31 01:48:22 -05:00
stores refactor(client-side): add autosave store actions 2023-10-12 23:01:43 -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 style(*): edit indents 2023-12-29 20:53:29 -05:00
.editorconfig style(*): edit indents 2023-12-29 20:53:29 -05:00
.gitignore chore(workspace): exclude out directory 2023-12-28 19:58:58 -05:00
.gitlab-ci.yml revert(ci): switch build stage back to node 2023-12-30 17:25:36 -05:00
.gitmodules chore(workspace): add tinymce (with premium plugins) as a submodule under public/ 2023-10-10 21:52:28 -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 style(*): cleanup unused imports 2023-12-29 20:11:07 -05:00
app.vue style(*): cleanup unused imports 2023-12-29 20:11:07 -05:00
error.vue fix(nuxt): unify error page and app styles 2023-12-30 19:17:51 -05:00
nuxt.config.ts refactor(nuxt): make nitro preset conditional 2023-12-30 16:08:57 -05:00
package.json chore(deps): add @vue/language-server dev dependency 2023-12-30 16:08:11 -05:00
README.md initialize with nuxt 2023-09-23 15:58:51 -04:00
tsconfig.json fix(config): move extends directive to be first in tsconfig 2023-12-29 12:44:19 -05: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.