Contribute to Dopenote
PHP 7.3 (7.2 also work, but 7.4 doesn't atm. - march 2020))
Composer
A mariadb/mysql server
npm - to build javascript files
npm
Fork the repo on GitHub
Git clone your fork
Run composer install in the repo dir
composer install
Create a new database called dopenote (collation: utf8mb4_unicode_ci)
dopenote
utf8mb4_unicode_ci
Rename the file .env.example to .env
.env.example
.env
Change the DB_* values in the .env file
DB_*
Run php artisan migrate:fresh
php artisan migrate:fresh
Run php artisan key:generate
php artisan key:generate
Run php artisan serve
php artisan serve
Run npm run dev to build .js files (or run npm run watchto watch for changes)
npm run dev
npm run watch
See the site at http://127.0.0.1:8000arrow-up-right
You can create an admin user by running php artisan db:seed- then you can login with email: admin@localhost and password: 12341234
php artisan db:seed
admin@localhost
12341234
Last updated 5 years ago
Was this helpful?