opnform/client
Julien Nahum d0dd1cfe39 Improve workspace creation 2024-01-22 14:40:17 +01:00
..
components Fix custom domain setting + fix maxFileSize preview 2024-01-22 14:28:22 +01:00
composables Fix form password 2024-01-16 13:27:54 +01:00
data Figured out auth & middlewares 2023-12-16 19:21:03 +01:00
layouts Started to refactor pages 2023-12-09 17:02:23 +01:00
lib Fix darkMode 2024-01-16 15:00:22 +01:00
middleware Added moderator impersonation 2024-01-19 14:27:04 +01:00
mixins/forms SEO meta nuxt migration (#274) 2024-01-04 18:38:50 +01:00
pages Improve workspace creation 2024-01-22 14:40:17 +01:00
plugins Fix sentry tracked issues 2024-01-18 11:37:04 +01:00
public Remove useless images + fix templates show page 2024-01-10 17:22:25 +01:00
scss Work in progress 2023-12-09 15:47:03 +01:00
server Fix form show page - clean code 2024-01-16 11:46:03 +01:00
stores Fix reset workingFromStore, fix star rating required, fix checkboxes 2024-01-17 14:52:32 +01:00
.env.docker Reworked docker scripts for new nuxt infrastructure (#285) 2024-01-18 16:35:45 +01:00
.env.example Improve .env.example - Add codemirror dependency 2024-01-18 16:07:19 +01:00
.gitignore Reworked docker scripts for new nuxt infrastructure (#285) 2024-01-18 16:35:45 +01:00
README.md Work in progress 2023-12-09 15:47:03 +01:00
app.vue No follow for non-production env 2024-01-12 15:59:01 +01:00
error.vue Fix sentry tracked issues 2024-01-18 11:37:04 +01:00
nuxt.config.ts Transpile signature package 2024-01-22 11:37:18 +01:00
opnform.config.js Add feature rqst, roadmap & fb group in footer 2024-01-16 18:52:51 +01:00
package-lock.json Improve .env.example - Add codemirror dependency 2024-01-18 16:07:19 +01:00
package.json Improve .env.example - Add codemirror dependency 2024-01-18 16:07:19 +01:00
runtimeConfig.js Added sentry 2024-01-17 19:32:17 +01:00
sitemap.js Fix sitemap source URL 2024-01-15 13:00:18 +01:00
tailwind.config.js Work in progress 2023-12-09 15:47:03 +01:00
tsconfig.json Work in progress 2023-12-09 15:47:03 +01:00

README.md

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.