ZERO TO STORES GUIDE
Set Up Your Project
Tutorial Video
Video recording in progress. Available soon.
Create Your Project
Everything starts with a simple command that launches an interactive setup process.
You'll be guided through the necessary steps to configure and generate your project with Codika.
codika create
This command runs in two phases:
- First, you'll go through a series of prompts to define your project configuration.
- Then, Codika will use that configuration to generate your Flutter app.
Next time you want to skip the interactive setup and reuse a saved configuration, you can run:
codika create -c path/to/codika.yaml
But for now, let's walk through the interactive setup step by step.
Project Identifiers
The first step is choosing your app's identity.
- The project name will be used to generate the Flutter project folder.
- The app name is how your app will appear in Codika and on the CLI. You can include spaces and capitalization.
- The organization identifier is used to uniquely identify your app in app stores. It follows the reverse domain notation (e.g.
com.yourcompany
).
Here's an example of what that might look like during setup:
? Enter project name ( default: My App ) QuickstartProject
? Enter app name ( default: Quickstart Project ) QuickStart Project
? Enter organization identifier ( default: com.example ) com.yourcompany
Git Configuration
Codika can automate your repository setup using the GitHub CLI (gh
).
This saves you the manual work of creating and configuring a Git repository.
During setup, you'll be asked how you'd like to configure version control:
How would you like to setup your Git repository?
❯ ◉ Create a new GitHub repository
◯ Enter repository URL manually
◯ Setup repository later
If you choose to create a GitHub repository, Codika will:
- Use your GitHub authentication via the gh CLI
- Let you select an organization under your GitHub account
- Allow you to choose the repository name and visibility (private or public)
- Set up the remote connection automatically
If you're not using GitHub or prefer to set things up yourself, you can select Enter repository URL manually and paste any valid Git URL (preferably SSH).
App assets
Codika gives you the option to configure app visuals like the app icon and splash screen right from the start.
We use the flutter_launcher_icons and flutter_native_splash packages to handle this.
During setup, you'll be asked:
? Configure custom app icon? (Y/n) Y
? Configure custom splash screen? (Y/n) Y
Saying Yes doesn't mean you're uploading your assets now. It simply adds the necessary configuration to your project, making it easy to update visuals later using:
codika update-visuals
If you select No, Codika will skip the configuration entirely, and no default visuals will be added.
Environment Configuration
Codika enforces a clean separation between development and production environments.
Each environment gets its own bundle identifier and configuration,
which means you can install both versions of the app on the same device without conflict.
You'll also have the option to add a staging environment.
Staging sits between dev and prod and is ideal for final QA before releasing to users.
With Codika, adding staging is effortless, and we highly recommend it—even if you're just getting started.
Would you like to add a staging environment? Press SPACE to select/deselect.
? Additional environment:
❯ ◉ Staging
Starter Project Selection
Codika is built around the idea of reusable building blocks. At the core of this is the starter project—the initial Flutter app your project is based on.
If this is your first time using Codika, you'll likely only see one option: Flutter Starter, which is simply the default Flutter counter app.
? Select a starter project
❯ ◉ Flutter Starter
This minimal template is meant to get you started quickly. Later, you can replace it with your own custom setup—complete with your design system, routing logic, or preferred architecture—and generalize it into a new starter project for future use.
Additional Components
A mobile app is rarely just a starter template. Codika helps you add real-world features through components. Components are modular building blocks you can integrate directly into your project during setup.
For example, the Flutter Starter includes an optional Localizations component that sets up internationalization support out of the box:
? Select components to include [Press SPACE to select/deselect] :
❯ ◉ Localizations
Components go far beyond just adding code. They include everything needed to make a feature work end-to-end automatically.
Each component can include:
- Packages
- Assets (icons, fonts, images)
- Routes
- Localization strings
- Native configuration updates
- Initialization code
- And more
Everything is pre-wired to work inside your Codika project, without any manual setup.
Firebase Configuration
Codika uses the Firebase CLI and Google Cloud CLI to fully automate your Firebase setup. You'll be asked if you want to configure Firebase for your environments:
? Configure Firebase? (Y/n) Y
? How to set up Firebase for the Development ?
❯ ◉ Create new
◯ Link existing
◯ Skip Firebase setup for Development
? How to set up Firebase for the Production ?
◯ Create new
◯ Link existing
❯ ◉ Same as Development
◯ Skip Firebase setup for Production
With Codika, you can:
- Create a new Firebase project directly from the CLI
- Link to an existing project (Codika will fetch and list them for you)
- Reuse the same Firebase project across environments using Same as Development
- Skip Firebase for now and configure it later
If you select Link existing, Codika will list all projects from your Firebase account so you can pick one. No need to manually enter anything. Once selected, Codika handles everything:
- Downloads and integrates the google-services files
- Initializes your Firebase app
- Creates a Firestore database
- Enables the required Google APIs
- Sets up service accounts for automated deployment
This ensures your app is Firebase-ready the moment creation finishes.
In some cases, it might make sense to keep things simple and use a single Firebase project across all environments (Dev, Staging, Prod). That's totally fine when you're just getting started.
As your project grows, it's best to separate environments cleanly to avoid data overlap and simplify testing.
Shorebird Integration
Shorebird enables over-the-air (OTA) updates for your Flutter app. It allows you to push fixes and patches instantly—without waiting for App Store or Play Store approval.
During setup, Codika will prompt you:
? Configure Shorebird for over-the-air updates? (Y/n) Y
If you select Yes, Codika will:
- Initialize the Shorebird project
- Link it to your Shorebird account
- Set up your CI/CD pipeline so you can ship patches using:
codika app patch
Shorebird is completely free to set up, and you don't have to use it right away. However, if your app isn't built with Shorebird enabled, you won't be able to use OTA updates later. There's no workaround—the feature must be baked in at build time.
That's why we strongly recommend enabling it now, even if you're unsure whether you'll need it immediately.
Shorebird essentially brings native hot reload to production. It's a powerful way to:
- Ship emergency fixes without resubmitting to app stores
- Roll out updates gradually
- React fast to production bugs
Once it's set up, deploying a patch is as simple as using the codika app patch
command.
Android Version Setup Executor
At this stage of the setup, Codika will ask if you want to configure the android version setup executor. Executors are optional automation steps that configure your project even further. The Android Version Setup executor updates your app to meet Google Play Store requirements.
? Update Android configurations? (Y/n) Y
App Configuration Overview
The app configuration part is now over. You'll see a summary of the configuration that will be used to generate your project. Press Enter to confirm the creation of your app and the CLI will start building everything for you. It should take about a minute to complete.
Run Your App
Once Codika finishes creating your project, you can immediately run it with the pre-configured launch configurations:
- Cursor/VS Code
- Android Studio
- Terminal
Navigate to the Run and Debug panel to find these launch configurations:
DEV | Debug
DEV | Profile
DEV | Release
PROD | Debug
PROD | Profile
PROD | Release
Access these run configurations in the dropdown menu:
DEV | Debug
DEV | Profile
DEV | Release
PROD | Debug
PROD | Profile
PROD | Release
Alternatively, use the CLI to run your app:
# Launch the app in different environments
flutter run -t lib/main_dev.dart --flavor dev --dart-define-from-file=.codika/config/dev/.env
flutter run -t lib/main_prod.dart --flavor prod --dart-define-from-file=.codika/config/prod/.env
What's Next?
Nice work! You now have a fully set up project with multiple environments and a structured workflow.
Next, we'll configure Codemagic and Shorebird and build your first app release. Continue to setting up your app distribution pipeline. 🚀