Apps
Publish an App

Publish an App Template

If you would like to publish a new app template for the SuperApp community, you can follow the steps below.

Clone Default Template

git clone --depth=1 --filter=blob:none --sparse https://github.com/django-superapp/django-superapp-sample-app django-superapp-my-own-app
cd django-superapp-my-own-app
rm -rf .git
git init
git remote add origin https://github.com/<my-organization>/django-superapp-my-own-app

Push the changes to Github

Commit your app to a new Github Repository and push it to Github.

Submit the app on SuperApp Marketplace

Submit your app to SuperApp Community by creating a new discussion here (opens in a new tab) with a link to your repository.

Bootstrap your project

cd superapp/apps;
django_superapp bootstrap-app \
--template-repo https://github.com/<my-organization>/django-superapp-my-own-app ./my_own_app;
cd ../../;