-
-
Notifications
You must be signed in to change notification settings - Fork 325
Creating Private Apps
Some apps you may not want to share publicly, they are for your own private use, this is how you do that.
Go to https://apps.heimdall.site, depending if the app you are creating is a foundation or enhanced app, go to the relevant section and download the Zip for any application (More actions).
- Extract the zip and rename the folder
- Rename the appname.php to exactly match your folder name
- Open the app.json, change the name field to exactly match the folder name, change the appid to something unique.
- Add an icon to your app and update the
icon
field inapp.json
. - Go to the root of the app and type
php artisan register:app Foldername
.
If you are running the docker image, the SupportedApps folder is in the config folder and you will need to run docker exec -it heimdall bash
then cd /var/www/localhost/heimdall/
to run the command.
If you are creating multiple apps instead of php artisan register:app Foldername
you can run php artisan register:app all
If you would decide that you want to remove a Private App from the database, use the --remove
option like php artisan register:app Foldername --remove