mirror of
https://github.com/brufdev/many-notes.git
synced 2026-01-25 12:28:58 -06:00
846 B
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