Go to file
Robert Rapp 63f795d4c9 Dockerfile aktualisiert 2023-12-07 03:11:46 +00:00
.idea ok 2023-10-12 01:07:28 +05:00
assets Merge branch 'master' of https://github.com/CraveTeck/mindboost 2023-06-12 00:40:10 +05:00
components Changed the path of octave.js to public subfolder called script 2023-12-07 01:42:46 +01:00
layouts ok 2023-06-12 00:20:39 +05:00
middleware ok 2023-03-07 09:28:32 +05:00
pages Changed the path of octave.js to public subfolder called script 2023-12-07 01:42:46 +01:00
plugins ok 2023-10-12 01:07:28 +05:00
public Changed the path of octave.js to public subfolder called script 2023-12-07 01:42:46 +01:00
stores ok 2023-10-12 05:09:48 +05:00
.DS_Store updated readme and have a running version 2023-12-06 23:00:21 +01:00
.dockerignore updated readme and have a running version 2023-12-06 23:00:21 +01:00
.gitignore Changed the path of octave.js to public subfolder called script 2023-12-07 01:42:46 +01:00
.npmrc ok 2023-01-03 04:25:36 +05:00
Dockerfile Dockerfile aktualisiert 2023-12-07 03:11:46 +00:00
README.md updated readme and have a running version 2023-12-06 23:00:21 +01:00
mindboost.zip updated readme and have a running version 2023-12-06 23:00:21 +01:00
nuxt.config.ts updated readme and have a running version 2023-12-06 23:00:21 +01:00
package-lock.json updated readme and have a running version 2023-12-06 23:00:21 +01:00
package.json updated readme and have a running version 2023-12-06 23:00:21 +01:00
tsconfig.json ok 2023-01-03 04:25:36 +05:00
yarn.lock updated readme and have a running version 2023-12-06 23:00:21 +01:00

README.md

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Preparation

To run the project you need to have node 19 installed. As the current version is newer you cannot just start the application if you have downloaded and installed node on your machine. In docker this is solved by the docker script but to run test on your application you need to install the node version manager (nvm).

  1. Install nvm using your terminal: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash

  2. Make nvm available in your terminal. Note: If you install a programm like you cannot just access it via the terminal because it is not registered in the list of commands for your terminal. What you need to do is register it manually. Just paste the following command and hit enter.

export NVM_DIR="([ -z "{XDG_CONFIG_HOME-}" ] && printf %s "{HOME}/.nvm" || printf %s "{XDG_CONFIG_HOME}/nvm")" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm

  1. You have now nvm available in your terminal so you will install node with version 19 by the command nvm install 19

  2. Now you set the node version of your current terminal to 19. This is necessary every time you run a new terminal, because the default node version is the newest. Just type nvm use 19

Setup

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Development Server

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

npm run dev

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Check out the deployment documentation for more information.