-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
885e34c
commit 1f98fe5
Showing
10 changed files
with
133 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export const TEMPLATE_INIT_PATH = '../templates/init'; | ||
export const TEMPLATE_SATELLITE_CONFIG_FILENAME = `juno.satellite.config`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import {red} from 'kleur'; | ||
|
||
export const consoleNoConfigFound = () => { | ||
console.log(`Oops! ${red('No juno.json found.')} Try to run the command from your project root.`); | ||
console.log( | ||
`Oops! ${red('No config file found.')} Try to run the command from your project root.` | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import {defineConfig} from '@junobuild/config'; | ||
|
||
/** @type {import('@junobuild/config').JunoConfig} */ | ||
export default defineConfig({ | ||
satellite: { | ||
satelliteId: '<SATELLITE_ID>', | ||
source: '<SOURCE>' | ||
}, | ||
orbiter: { | ||
orbiterId: '<ORBITER_ID>' | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import {defineConfig} from '@junobuild/config'; | ||
|
||
export default defineConfig({ | ||
satellite: { | ||
satelliteId: '<SATELLITE_ID>', | ||
source: '<SOURCE>' | ||
}, | ||
orbiter: { | ||
orbiterId: '<ORBITER_ID>' | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import {defineConfig} from '@junobuild/config'; | ||
|
||
/** @type {import('@junobuild/config').JunoConfig} */ | ||
export default defineConfig({ | ||
satellite: { | ||
satelliteId: '<SATELLITE_ID>', | ||
source: '<SOURCE>' | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import {defineConfig} from '@junobuild/config'; | ||
|
||
export default defineConfig({ | ||
satellite: { | ||
satelliteId: '<SATELLITE_ID>', | ||
source: '<SOURCE>' | ||
} | ||
}); |