Getting StartedExisting ProjectQuick Guide

Quick Guide for Setting Up an Existing Project

Before you start, make sure meet the requirements needed.

Setting up an existing project

Are you working with an existing project, check over here instead

Clone your project from Github

  1. Visit the Fully Studios GitHub.
  2. Find your project in the list of repositories
  3. Click the <> Code button in your repository.
  4. Select the SSH option
  5. Copy the SSH link.
  6. Open your terminal and navigate to the directory where you want to store your new project.
  7. Run the command: git clone **Paste the SSH link here**.

    It should look something like this: git clone git@github.com:fullystudios/your-project.git

Now you have set up the base project, you can start setting up the Forge template.

Adding environment

Now that you have cloned the repository, you need to set up the Forge template.

  1. Open the cloned project in your preferred code editor.
  2. Open 1password and find the environment variables for your project.
  3. Copy the environment variables and paste them into the .env.local file.

Starting the Project

  1. npm install
  2. npm run dev
  3. Visit http://localhost:THE_PORT_IN_YOUR_PACKAGE_JSON in your browser to see the project.