Skip to content

ismaelvr1999/StackNotes

Repository files navigation

Stack Notes

A basic notes app.

Screenshots

Home

Home

Create note

Create

Favorites

Favorites

Pinned

Pinned

Installation

Note: Make sure you have completed the Set Up Your Environment guide before proceeding.

1. Clone the repository.

git clone git@github.com:ismaelvr1999/StackNotes.git

2. Install Dependencies.

cd StackNotes
npm install

3. Build and run your app

Android

npm run start # start dev server 

npm run android # install app 

iOS

WARNING: This app has not been tested on iOS yet.

For iOS, remember to install CocoaPods dependencies (this only needs to be run on first clone or after updating native deps).

The first time you create a new project, run the Ruby bundler to install CocoaPods itself:

bundle install

Then, and every time you update your native dependencies, run:

bundle exec pod install
# Using npm
npm run ios

# OR using Yarn
yarn ios