opnform/client
Julien Nahum 52af13d84b Merge branch 'migrate-to-nuxt' of https://github.com/JhumanJ/OpnForm into migrate-to-nuxt 2024-01-03 17:38:18 +01:00
..
components Merge branch 'migrate-to-nuxt' of https://github.com/JhumanJ/OpnForm into migrate-to-nuxt 2024-01-03 17:38:18 +01:00
composables Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +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 Remove vform - working on form public page 2023-12-24 20:19:59 +01:00
middleware Working on page pre-rendering 2024-01-02 16:35:16 +01:00
mixins Nuxt Migration notifications (#265) 2023-12-31 12:39:01 +01:00
pages Merge branch 'migrate-to-nuxt' of https://github.com/JhumanJ/OpnForm into migrate-to-nuxt 2024-01-03 17:38:18 +01:00
plugins Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +01:00
public Work in progress 2023-12-09 15:47:03 +01:00
scss Work in progress 2023-12-09 15:47:03 +01:00
server Work in progress 2023-12-09 15:47:03 +01:00
stores Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +01:00
.gitignore Work in progress 2023-12-09 15:47:03 +01:00
README.md Work in progress 2023-12-09 15:47:03 +01:00
app.vue Nuxt Migration notifications (#265) 2023-12-31 12:39:01 +01:00
nuxt.config.ts Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +01:00
opnform.config.js Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +01:00
package-lock.json Fix notifications 2024-01-03 11:19:36 +01:00
package.json Adding missing module 2024-01-02 19:00:07 +01:00
runtimeConfig.js Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +01:00
sitemap.js Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +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.