Getting a Netlify Access Token
- Sign Up/Sign In: Go to Netlify and create an account
- Navigate to Access Tokens: Go to User Settings → Applications → Personal access tokens
- Create Token: Click “New access token”, give it a name (e.g., “CodinIT”)
- Copy Token: Save the token securely
Configuration in CodinIT
- Open Settings: Click the gear icon on sidebar → Connections tab
- Find Netlify: Scroll to the Netlify connection section
- Enter Token: Paste your access token and click “Connect”
- Verify: You should see your Netlify account information
Deploying Your Project
- Click Deploy: In any project, click the deploy button in the header
- Choose Netlify: Select “Deploy to Netlify” from the deployment dialog
- Wait for Build: CodinIT automatically builds your project and deploys it
- View Live Site: Click the deployment URL when complete
Build Configuration
CodinIT automatically detects your build output in these common directories:/dist- Vite, Rollup/build- Create React App/out- Next.js static export/.next- Next.js (served automatically)/public- Static sites
Troubleshooting
Build Fails:- Check the terminal output for build errors
- Ensure your
package.jsonhas abuildscript - Verify all dependencies are installed
- Confirm your Netlify token has deployment permissions
- Check that your project builds successfully locally
- Ensure build output directory exists and contains files
- CodinIT tries common directories automatically
- If your build outputs to a different directory, modify your build script
