Create Repository from Template using Github API

Start with this template
96
import logging
from fastapi import FastAPI, HTTPException
from fastapi.responses import RedirectResponse
from some_get_request_handler import handle_get_endpoint
from some_post_request_handler import handle_post_endpoint, Data
from github_api_handler import create_repo_from_template

logger = logging.getLogger(__name__)
logging.basicConfig(level=logging.WARNING)

app = FastAPI()

@app.get("/", include_in_schema=False)
def root():
    return RedirectResponse(url='/docs')

@app.post("/create_repo")
def create_repository():
    try:
        result = create_repo_from_template()
        return result
    except Exception as e:
        logger.error(f"Failed to create repository: {e}")
        raise HTTPException(status_code=500, detail="Internal server error")
Get full code

Create Repository from Template using Github API

Created: | Last Updated:

Introduction to the Create Repository from Template using Github API Template

Welcome to the "Create Repository from Template using Github API" template! This template is designed to help you create a new GitHub repository using an existing template repository. It automates the process through a simple API call, allowing you to specify the new repository's name and description. This is particularly useful for quickly setting up new projects with a predefined structure and files.

Clicking Start with this Template

To begin using this template, simply click on the "Start with this Template" button. This will initialize the template in the Lazy Builder interface, pre-populating the code for you.

Initial Setup: Adding Environment Secrets

Before you can use this template, you need to set up some environment secrets within the Lazy Builder. These secrets will store sensitive information required by the GitHub API to create a repository from a template.

Here are the environment secrets you need to set up:

  • GITHUB_TOKEN: Your GitHub personal access token. You can create one by following the instructions on the GitHub documentation.
  • TEMPLATE_OWNER: The username of the owner of the template repository.
  • TEMPLATE_REPO: The name of the template repository.
  • NEW_REPO_NAME: The name you want to give your new repository.
  • NEW_REPO_DESCRIPTION: A description for your new repository.

To add these secrets:

  1. Go to the Environment Secrets tab within the Lazy Builder.
  2. Click on the "Add Secret" button.
  3. Enter the name of the secret (e.g., GITHUB_TOKEN) and its value.
  4. Repeat the process for each secret.

Test: Pressing the Test Button

Once you have set up the environment secrets, you can test the template by clicking the "Test" button. This will deploy the app and launch the Lazy CLI.

Using the App

After pressing the "Test" button, the Lazy CLI will handle the deployment of your application. Once the deployment is complete, Lazy will provide you with a dedicated server link. You can use this link to interact with the API.

Since this template uses FastAPI, you will also be provided with a link to the API documentation. This documentation will be accessible at the /docs endpoint and will allow you to see all the available API routes and test them directly from your browser.

Integrating the App

If you wish to integrate the newly created repository into another service or frontend, you can use the URL provided by the Lazy CLI after the repository is successfully created. This URL will point to the new GitHub repository, where you can clone the repository or set up webhooks and other integrations as needed.

For example, if you want to clone the repository, you can use the following command in your terminal:

git clone [URL provided by Lazy CLI] Replace [URL provided by Lazy CLI] with the actual URL provided after the repository creation.

Remember, all the steps listed above are mandatory to run and integrate the template. Follow them carefully to ensure a smooth experience with the "Create Repository from Template using Github API" template on Lazy.

Technologies

Fast API Fast API
GitHub GitHub