stancl/tenancy docs & website https://tenancyforlaravel.com/docs
Find a file
Adebayo Ilerioluwa da46d5106c
Update README.md
2020-07-22 15:44:00 +01:00
listeners 3.x redesign 2020-06-08 21:20:15 +02:00
source Improved Documentation Search (#61) 2020-07-21 20:18:29 +02:00
.gitignore 3.x redesign 2020-06-08 21:20:15 +02:00
bootstrap.php 3.x redesign 2020-06-08 21:20:15 +02:00
build.sh 3.x redesign 2020-06-08 21:20:15 +02:00
composer.json 3.x redesign 2020-06-08 21:20:15 +02:00
composer.lock 3.x redesign 2020-06-08 21:20:15 +02:00
config.php 3.x redesign 2020-06-08 21:20:15 +02:00
config.production.php 3.x redesign 2020-06-08 21:20:15 +02:00
config.staging.php 3.x redesign 2020-06-08 21:20:15 +02:00
LICENSE.txt 3.x redesign 2020-06-08 21:20:15 +02:00
navigation.php realtime facades 2020-07-20 14:56:17 +02:00
netlify.toml 3.x redesign 2020-06-08 21:20:15 +02:00
package-lock.json Bump lodash from 4.17.15 to 4.17.19 (#60) 2020-07-18 14:24:18 +02:00
package.json 3.x redesign 2020-06-08 21:20:15 +02:00
README.md Update README.md 2020-07-22 15:44:00 +01:00
staging.sh 3.x redesign 2020-06-08 21:20:15 +02:00
tailwind.config.js 3.x redesign 2020-06-08 21:20:15 +02:00
webpack.mix.js 3.x redesign 2020-06-08 21:20:15 +02:00

stancl/tenancy docs

For the main repository, see stancl/tenancy.

Getting started

Prerequisites

  1. Git
  2. PHP: any 7.x version starting with v7.3 or greater
  3. Composer: See Composer Website
  4. Node: any 12.x version starting with v12.0.0 or greater
  5. A fork of the repo (for any contributions)
  6. A clone of tenancy-docs on your local machine

Installation

  1. composer install to install dependencies
  2. npm install to install the docs npm dependencies

Running locally

  1. You can use npm run watch, npm run dev, and npm run production.
  2. open http://localhost:3000 to open the site in your favorite browser

Contributing

Create a branch

  1. git pull origin master to ensure you have the latest main code
  2. git checkout -b the-name-of-my-branch (replacing the-name-of-my-branch with a suitable name) to create a branch

Make the change

Push it

  1. git add -A && git commit -m "My message" (replacing My message with a commit message, such as Fix header logo on Android) to stage and commit your changes
  2. git push my-fork-name the-name-of-my-branch
  3. A Netlify build will also be automatically created once you make your PR so other people can see your change.