forked from twentyhq/twenty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix docker install * Move back twenty-eslint-plugin to eslint-plugin-twenty * fix: add bundled yarn * Improve makeifle structure * Update commands and doc * Add pg_graphql binaries * Fix --------- Co-authored-by: Jérémy Magrin <jeremy.magrin@gmail.com>
- Loading branch information
1 parent
44ef218
commit 8d53c63
Showing
48 changed files
with
1,328 additions
and
116 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,2 +1,5 @@ | ||
enableInlineHunks: true | ||
|
||
nodeLinker: node-modules | ||
enableInlineHunks: true | ||
|
||
yarnPath: .yarn/releases/yarn-4.0.2.cjs |
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,23 @@ | ||
docker-dev-build: | ||
make -C packages/twenty-docker dev-build | ||
|
||
docker-dev-up: | ||
make -C packages/twenty-docker dev-up | ||
|
||
docker-dev-down: | ||
make -C packages/twenty-docker dev-down | ||
|
||
docker-dev-sh: | ||
make -C packages/twenty-docker dev-sh | ||
|
||
postgres-provision-on-docker: | ||
make -C packages/twenty-docker dev-postgres-build | ||
|
||
postgres-provision-on-macos-arm: | ||
make -C packages/twenty-postgres provision-on-macos-arm | ||
|
||
postgres-provision-on-macos-intel: | ||
make -C packages/twenty-postgres provision-on-macos-intel | ||
|
||
postgres-provision-on-linux: | ||
make -C packages/twenty-postgres provision-on-linux |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
packages/twenty-eslint-plugin/package.json → packages/eslint-plugin-twenty/package.json
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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 |
---|---|---|
@@ -1,8 +1,14 @@ | ||
provision-postgres-macos-arm: | ||
sh ./scripts/setup-postgres-macos-arm.sh | ||
provision-on-macos-arm: | ||
sh ./provision/setup-postgres-macos-arm.sh | ||
|
||
provision-postgres-macos-intel: | ||
sh ./scripts/setup-postgres-macos-intel.sh | ||
provision-on-macos-intel: | ||
sh ./provision/setup-postgres-macos-intel.sh | ||
|
||
provision-postgres-linux: | ||
sh ./scripts/setup-postgres-linux.sh | ||
provision-on-linux: | ||
sh ./provision/setup-postgres-linux.sh | ||
|
||
build-pg_graphql-macos-arm: | ||
sh ./build/pg_graphql/build-pg_graphql-macos-arm.sh | ||
|
||
build-pg_graphql-macos-intel: | ||
sh ./build/pg_graphql/build-pg_graphql-macos-intel.sh |
Oops, something went wrong.