Product Documentation
Pasco
Pasco
  • About
  • Getting Started
    • ️Welcome to pasco
    • Installation
    • Configuration Options
    • Editing the tree
    • Contributing
    • Supporting pasco
    • Troubleshooting
    • Use Cases
  • Support
    • ️How to get more support
  • Tips & Tricks
    • iOS Switch scanning
    • Tips on using Bluetooth and Wired speakers
    • Using MindNode to make your language tree
    • Using a text editor to make your language tree
    • Examples of pasco in use
  • Advanced
    • Tree / Language file details
    • Meta tags
    • Developing pasco
    • Meta-Data commands
Powered by GitBook
On this page
  • Getting started with development
  • Having problems at this stage?
  • How is the project structured?
Export as PDF
  1. Advanced

Developing pasco

PreviousMeta tagsNextMeta-Data commands

Last updated 3 years ago

pasco is a app. The logic is largely in javascript with some custom work built for iOS.

Getting started with development

To get you up and running this should get you to the point where you can work on the normal web version:

git clone https://github.com/AceCentre/pasco.git
npm install
bower install
npm run dev

For the iOS version you will need to be on a mac with XCode. Here are the commands to get going with this:

npm run cordova-dist
cd cordova
cordova platform add ios
cordova run

You should find the xcode project in cordova\platforms\ios\pasco.xcodeproj

Having problems at this stage?

npm install --upgrade cordova@latest
npm install --upgrade cordova-ios@latest
npm install --upgrade ios-deploy
npm install cordova-icon 

How is the project structured?

i.e. what goes where.

cordova