diff --git a/.env.dusk.example b/.env.dusk.example new file mode 100644 index 000000000000..1e9637c88a31 --- /dev/null +++ b/.env.dusk.example @@ -0,0 +1,29 @@ +APP_ENV=local +APP_DEBUG=true +APP_LOCALE=en +APP_URL=http://127.0.0.1:8000 +APP_KEY=s7epnjtomsdond5zgfqgaqmwhhcjct02 +APP_CIPHER=AES-256-CBC +REQUIRE_HTTPS=false +NINJA_ENVIRONMENT=hosted + +DB_TYPE=mysql +DB_STRICT=false +DB_HOST=localhost +DB_USERNAME=ninja +DB_PASSWORD=ninja + +DB_CONNECTION=db-ninja-01 +DB_DATABASE1=db-ninja-01 +DB_DATABASE2=db-ninja-02 +MAIL_DRIVER=log +MAIL_PORT=587 +MAIL_ENCRYPTION=tls +MAIL_HOST= +MAIL_USERNAME= +MAIL_FROM_NAME= +MAIL_FROM_ADDRESS= +MAIL_PASSWORD= +MAILGUN_DOMAIN= +MAILGUN_SECRET= +AUTH_PROVIDER=users diff --git a/.gitignore b/.gitignore index 54cc729e647b..60b4d5593fe9 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,5 @@ yarn-error.log /resources/assets/bower /public/vendor /public/logo + +.env.dusk.local \ No newline at end of file diff --git a/README.md b/README.md index 31cc66f5d7a4..146d95f14301 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Curently the client portal and API are of alpha quality, to get started: git clone https://github.com/invoiceninja/invoiceninja.git git checkout v2 cp .env.example .env +cp .env.dusk.example .env.dusk.local composer update npm i npm run production