Skip to content

Commit

Permalink
move to monorepo
Browse files Browse the repository at this point in the history
Signed-off-by: Shreyans Jain <[email protected]>
  • Loading branch information
CodeWithShreyans committed Dec 1, 2024
1 parent e8f2c76 commit e60df0c
Show file tree
Hide file tree
Showing 108 changed files with 677 additions and 92 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ jobs:

- name: 📦 Install dependencies
run: bun install
working-directory: apps/mobile

- name: 🚧 Build app
run: eas build --profile preview --platform ios --non-interactive --local --output ${{ github.workspace }}/build.ipa
working-directory: apps/mobile

- name: ⬆️ Upload IPA
uses: actions/upload-artifact@v4
with:
path: ${{ github.workspace }}/build.ipa
path: ${{ github.workspace }}/apps/mobile/build.ipa
4 changes: 3 additions & 1 deletion .github/workflows/build-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ jobs:

- name: 📦 Install dependencies
run: bun install
working-directory: apps/mobile

- name: 🚧 Build app
run: eas build --profile production --platform ios --non-interactive --local --output ${{ github.workspace }}/build.ipa
working-directory: apps/mobile

- name: ⬆️ Upload IPA
uses: actions/upload-artifact@v4
with:
path: ${{ github.workspace }}/build.ipa
path: ${{ github.workspace }}/apps/mobile/build.ipa
4 changes: 3 additions & 1 deletion .github/workflows/build-sim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ jobs:

- name: 📦 Install dependencies
run: bun install
working-directory: apps/mobile

- name: 🚧 Build app
run: eas build --profile ios-simulator --platform ios --non-interactive --local --output ${{ github.workspace }}/build.ipa
working-directory: apps/mobile

- name: ⬆️ Upload IPA
uses: actions/upload-artifact@v4
with:
path: ${{ github.workspace }}/build.ipa
path: ${{ github.workspace }}/apps/mobile/build.ipa
2 changes: 1 addition & 1 deletion .github/workflows/update-guides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
r2-access-key-id: ${{ secrets.R2_ACCESS_KEY_ID }}
r2-secret-access-key: ${{ secrets.R2_SECRET_ACCESS_KEY }}
r2-bucket: ${{ secrets.R2_BUCKET }}
source-dir: guides
source-dir: apps/mobile/guides
destination-dir: ./
29 changes: 18 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
node_modules/
node_modules
.pnp
.pnp.js
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
coverage
.turbo
.vercel
.next/
out/
build
dist
.DS_Store
*.pem
.expo/
dist/
npm-debug.*
Expand All @@ -11,13 +27,4 @@ npm-debug.*
web-build/
ios/
android/
.env

# macOS
.DS_Store

# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
# The following patterns were generated by expo-cli

expo-env.d.ts
# @end expo-cli
expo-env.d.ts
Empty file added .npmrc
Empty file.
2 changes: 1 addition & 1 deletion LICENSE → LICENSE-BSD
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Loading

0 comments on commit e60df0c

Please sign in to comment.