Your First Tapyr Application

Creating repository

The simplest way to start your Tapyr application is to create a new repository using the template feature of GitHub. This will create a new repository with the basic structure of a Tapyr application.

Click the Create a new repository button

And then:

Fill in the repository name and click create repository button

Cloning repository

After creating the repository, you can clone it to your local machine using the following command (change Appsilon/my-tapyr-app to the name of your user/organization and repository):

git clone git@github.com:Appsilon/my-tapyr-app.git

Copy the repository URL and run the git clone command

Environment setup and running the application

Now you please setup the environment according to the How To Setup Environment guide.

Then run the application with:

shiny run app.py

Congratulations! You have just created your first Tapyr application. 🎉

Next steps

Now adjust the application to your needs. For example change the project name by changing tapyr_template to my_tapyr_app directory name and adjusting the pyproject.toml file.