Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
d704570
Updating Components and Preparing Code to work
dav1nx2 Sep 12, 2023
95879f5
updating dependencies
dav1nx2 Sep 12, 2023
50f7da4
updating dependencies
dav1nx2 Sep 12, 2023
d24c9f6
feat: ask for environment branching (#132)
Rusty-Beard Jun 26, 2023
642cfa0
feat: new log engine (#134)
Rusty-Beard Jun 26, 2023
28fb830
feat: refactoring triggers, update 8base types (#135)
Rusty-Beard Jun 26, 2023
647a20d
Bump version
s1owjke Jun 26, 2023
a062482
WIP: starting
dav1nx2 Sep 14, 2023
ac13334
env example
dav1nx2 Sep 14, 2023
31090f2
removing env
dav1nx2 Sep 20, 2023
f2fbde3
remove fail code
dav1nx2 Sep 20, 2023
9abfa05
feature: initial commit
Dav1nx1 Sep 23, 2023
fe0e580
finished download files, and override
dav1nx2 Sep 27, 2023
0ef78e1
feat: finished init flow
dav1nx2 Oct 2, 2023
155e94e
adjusts on sync
dav1nx2 Oct 2, 2023
44d32d9
change last message on sync command
dav1nx2 Oct 2, 2023
20cffbc
1.0.1
dav1nx2 Oct 2, 2023
10912e3
linter fixes
dav1nx2 Oct 3, 2023
5b2a042
update snapshopt
dav1nx2 Oct 3, 2023
b48cbd4
fixing default host
dav1nx2 Oct 3, 2023
2e19b59
fixing default host
dav1nx2 Oct 3, 2023
fc8a156
fixed package.lock
dav1nx2 Oct 3, 2023
246b9b2
fixed package.lock
dav1nx2 Oct 3, 2023
39e8daa
removing prompt
dav1nx2 Oct 3, 2023
bd94447
adding message
dav1nx2 Oct 3, 2023
428e025
fixing snapshot
dav1nx2 Oct 3, 2023
27fe3d8
fixing snapshot
dav1nx2 Oct 3, 2023
8409c6c
adding env support to test
dav1nx2 Oct 3, 2023
ba6a324
adding env support to test
dav1nx2 Oct 3, 2023
6f4310c
adding workspace file
dav1nx2 Oct 5, 2023
9829114
adding the capacity to retrieve files from the parent when is a branc…
dav1nx2 Oct 6, 2023
4cb608c
adding the capacity to retrieve files from the parent when is a branc…
dav1nx2 Oct 6, 2023
72f67ab
updating publish node
dav1nx2 Oct 6, 2023
365504a
changes on the message behavior
dav1nx2 Oct 9, 2023
69c72c7
changes on the message behavior
dav1nx2 Oct 9, 2023
0a2eb99
remove environment text on environment sync result
dav1nx2 Oct 10, 2023
4c9dd86
fixing sync prompt logic
dav1nx2 Oct 10, 2023
95b95c8
removing handler.js file on download
dav1nx2 Oct 10, 2023
ab65b31
updated versions
Dav1nx1 Oct 11, 2023
5e6f50f
fixing behavior
dav1nx2 Oct 11, 2023
9726fbc
Merge remote-tracking branch 'origin' into PRODUCT-2458
Dav1nx1 Feb 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,5 @@ lib/
.DS_Store
temp
__diff_output__

dist
21 changes: 0 additions & 21 deletions .vscode/tasks.json

This file was deleted.

15 changes: 8 additions & 7 deletions e2e/tests/__snapshots__/help.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ COMMANDS
8base environment list Lists all the environments of current workspace.
8base environment set Allows you to set the environment of your current project
8base environment show Displays currently selected environment
8base environment sync Imports project files and custom functions from the latest deployed version of current active environment.

OPTIONS
-d, --debug Turn on debug logs [boolean]
Expand Down Expand Up @@ -219,7 +220,7 @@ COMMANDS
8base generate resolver <name> Generator for a custom resolver function.
8base generate scaffold <tableName> Generates CRUD screens for a table in a specific framework (framework availability: react)
8base generate task <name> Generator for a custom task function.
8base generate trigger <name> Generator for a custom trigger function.
8base generate trigger <tableName> Generator for a custom trigger function.
8base generate webhook <name> Generator for a custom webhook function.

OPTIONS
Expand Down Expand Up @@ -371,7 +372,7 @@ exports[`As a user, I can use help flag for see help information about \`[ 'invo
DESCRIPTION
Invokes a custom function in the production workspace.

Positionals:
POSITIONALS
name The name of the function [string] [required]

OPTIONS
Expand All @@ -389,7 +390,7 @@ exports[`As a user, I can use help flag for see help information about \`[ 'invo
DESCRIPTION
Invokes a custom function in the production workspace.

Positionals:
POSITIONALS
name The name of the function [string] [required]

OPTIONS
Expand Down Expand Up @@ -433,13 +434,13 @@ OPTIONS

exports[`As a user, I can use help flag for see help information about \`[ 'logs' ]\`. 1`] = `
"COMMAND
8base logs [name] [OPTIONS]
8base logs [OPTIONS]

DESCRIPTION
Authenticates the command line user by letting them log into an 8base account.
Shows logs for the functions or migrations

Positionals:
name The name of the function [string] [required]
POSITIONALS
name Name parameter is now deprecated [deprecated] [string]

OPTIONS
-d, --debug Turn on debug logs [boolean]
Expand Down
13 changes: 13 additions & 0 deletions env_example
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
USERPROFILE=
HOME=
HOME_PATH=
SKIP_VERSION_CHECK=
E2E_SCAFFOLD_GENERATE=
ID_TOKEN=
E2E_SCAFFOLD_WORKSPACE_ID=
E2E_SCAFFOLD_SERVER_URL=
DEVELOPMENT=true
SERVER_URL='http://localhost:3000'
CLIENT_APP_URL='http://localhost:3001'
HOST='https://prestaging-api.8basedev.com/'
DEV_MODE=true
Loading