This repository was created with the intention that it can serve as a base project, oriented to the creation of Side Projects that need to be built in an orderly, scalable and above all that allows to add features quickly.
It is based on T3 Stack with a few very subjective modifications.
Simply cloning the project, and configuring the environment variables, you should be able to start without any problem.
Here are the steps to execute the project:
-
Clone the repo
git clone https://github.com/Indie-Creator-Community/side-project-starter-kit.git
-
Install NPM packages
pnpm install
-
You will find an .env.example file, where you will see the basic variables for the project to work.
DISCORD_CLIENT_ID= 'ENTER YOUR CLIENT ID';
-
This project uses an .env file depending on the environment in which the app is running.
local: .env.local
development: .env.development
production: .env.production
-
To make a build of all apps and packages
pnpm build
-
Run the apps/nextjs
pnpm dev