Gathering detailed insights and metrics for create-automaticgpt-template
Gathering detailed insights and metrics for create-automaticgpt-template
Gathering detailed insights and metrics for create-automaticgpt-template
Gathering detailed insights and metrics for create-automaticgpt-template
npm install create-automaticgpt-template
Typescript
Module System
Node Version
NPM Version
TypeScript (87.63%)
JavaScript (8.13%)
PLpgSQL (4.22%)
CSS (0.02%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
24 Commits
6 Branches
1 Contributors
Updated on Jul 08, 2025
Latest Version
1.0.1
Package Id
create-automaticgpt-template@1.0.1
Unpacked Size
569.18 kB
Size
292.90 kB
File Count
106
NPM Version
10.8.2
Node Version
20.19.0
Published on
Jul 08, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
34
21
A modern AI-powered mobile and web application built with Expo, featuring authentication, conversation management, analytics, and sharing capabilities.
This app was created using the AutomaticGPT Template.
npm install -g @expo/cli
)1# Install dependencies 2npm install 3 4# Optional: Run interactive setup wizard 5npm run setup 6 7# Or manually copy environment config 8cp .env.example .env.local 9# Then edit .env.local with your actual values 10 11# Start the development server 12npm run start 13 14# Run on specific platforms 15npm run ios # iOS Simulator 16npm run android # Android Emulator 17npm run web # Web Browser
Choose one of these setup methods:
Option 1: Interactive Setup (Recommended for newcomers)
1npm run setup
Option 2: Manual Setup (Preferred by experienced developers)
1cp .env.example .env.local 2# Then edit .env.local with your actual values
The .env.example
file contains all available configuration options with documentation:
1# Required - OpenAI API Key 2OPENAI_API_KEY="your_openai_api_key" 3 4# Required - Supabase Configuration 5EXPO_PUBLIC_SUPABASE_URL="your_supabase_url" 6EXPO_PUBLIC_SUPABASE_ANON_KEY="your_supabase_anon_key" 7SUPABASE_SERVICE_ROLE_KEY="your_service_role_key" 8 9# App Configuration 10EXPO_PUBLIC_APP_NAME="AutomaticGPT" 11EXPO_PUBLIC_APP_SLUG="automaticgpt" 12 13# Feature Flags (all implemented features default to true) 14EXPO_PUBLIC_ENABLE_AUTH=true 15EXPO_PUBLIC_ENABLE_CONVERSATION_MANAGEMENT=true 16EXPO_PUBLIC_ENABLE_CONVERSATION_ANALYTICS=true 17EXPO_PUBLIC_ENABLE_CONVERSATION_SHARING=true 18EXPO_PUBLIC_ENABLE_ONBOARDING=true 19EXPO_PUBLIC_ENABLE_SIDEBAR=true 20EXPO_PUBLIC_ENABLE_THEME_CUSTOMIZATION=true
supabase/migrations/001_create_conversations_system.sql
src/
├── app/ # Expo Router routes & API endpoints
│ ├── (auth)/ # Authentication screens
│ ├── (app)/ # Main app screens
│ └── api/ # API routes
├── features/ # Feature-based organization
│ ├── auth/ # Authentication system
│ ├── chat/ # AI chat functionality
│ ├── onboarding/ # User onboarding
│ └── shared/ # Shared components
├── config/ # App configuration
├── lib/ # Utilities and integrations
└── types/ # TypeScript definitions
1npm run start # Start Expo development server 2npm run ios # Run on iOS simulator 3npm run android # Run on Android emulator 4npm run web # Run in web browser 5npm run lint # Run ESLint 6npm run lint:fix # Fix ESLint issues 7npm run typecheck # Run TypeScript checks 8npm run test # Run tests 9npm run format # Format code with Prettier
1npm run deploy
npx eas build:configure
npx eas build
npx eas submit
This project is licensed under the MIT License - see the LICENSE file for details.
Happy coding! 🚀
No vulnerabilities found.
No security vulnerabilities found.