-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
angularspree merge[git submodule] (#397)
### Why? AngularSpree is now a part of Aviacommerce project, we need to keep both(front-end, backend) the repos in one single repo. This will result in better experience while setting up this project locally. ### This change addresses the need by? Adding a submodule for AngularSpree repo in the avia repo. We'll update angularspree remote every 15 days. Primary development will happen in this repository.
- Loading branch information
Showing
3 changed files
with
12 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "front-end"] | ||
path = front-end | ||
url = [email protected]:aviabird/angularspree.git |
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ language: elixir | |
otp_release: | ||
- 20.2 | ||
before_install: | ||
# Use sed to replace the SSH URL with the public URL, then initialize submodules | ||
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules | ||
- git submodule update --init --recursive | ||
- mix local.hex --force | ||
- mix local.rebar --force | ||
- mix deps.get | ||
|
@@ -40,5 +43,9 @@ env: | |
notifications: | ||
email: | ||
recipients: | ||
- ananya95+travis@gmail.com | ||
- developers@aviabird.com | ||
|
||
# Handle git submodules yourself | ||
git: | ||
submodules: false | ||
|