Files
many-notes/docs/installation/non-docker.md
2025-02-14 00:44:45 +00:00

846 B

Installation guide

Here are the full instructions for a non-Docker installation.

Requirements

PHP 8.4+, Composer, npm and Git

Instructions

Clone the project:

git clone https://github.com/brufdev/many-notes.git

Install Composer dependencies

composer install --no-dev --optimize-autoloader

Install npm dependencies

npm install

Create caches to optimize the application

php artisan optimize

Run the npm build

npm run build

Create .env file

cp .env.example .env

Generate application key

php artisan key:generate

Create the symbolic link for Many Notes public storage

php artisan storage:link

Run the database migrations

php artisan migrate

Run the upgrade command

php artisan upgrade:run