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
- Visit the Fully Studios GitHub.
- Find your project in the list of repositories
- Click the
<> Codebutton in your repository. - Select the
SSHoption - Copy the SSH link.
- Open your terminal and navigate to the directory where you want to store your new project.
- 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.
- Open the cloned project in your preferred code editor.
- Open 1password and find the environment variables for your project.
- Copy the environment variables and paste them into the
.env.localfile.
Starting the Project
-
npm install -
npm run dev -
Visit
http://localhost:THE_PORT_IN_YOUR_PACKAGE_JSONin your browser to see the project.