Projects
Publish a Project

Publish a Project Template

If you would like to publish a new project 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-default-project django-superapp-my-own-project
cd django-superapp-my-own-project
rm -rf .git
git init
git remote add origin https://github.com/<my-organization>/django-superapp-my-own-project

Push the changes to Github

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

Submit the project on SuperApp Marketplace

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

Bootstrap your project

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