Kindie
  • Introduction
  • Get Started
  • Compatibility Requirements
  • Installing Web Server
  • Source code structure
  • Change log
  • Mobile App
    • Customization
    • Installing
    • Mobile app structure
    • Deployment
    • Common Errors and Questions
    • Reference
  • Web User Guide
    • First Settings
    • Get started
    • Education management
    • Album management
    • Notification
    • Event
    • News
    • Fee Collection
    • Front Office Settings
  • Thank you
Powered by GitBook
On this page
  • Web servers
  • Install MongoDB Server
  • Install RoboMongo
  • Code Editors
  • Mobile Development
  • For Android:
  • For iOS:

Was this helpful?

Compatibility Requirements

PreviousIntroductionNextInstalling Web Server

Last updated 4 years ago

Was this helpful?

Before start, please refer to our system architecture to understand what we need to do to run the Kindie platform.

  • Web server: displays the website content and provide API for the app.

  • Mobile app: a software application developed specifically for tearcher and parent on smartphones and tablets.

  • If you need to use HTTPS for your website, we need to install Nginx Service, you can refer step by step to config here: . And download to use when you need to deploy on production server.

location / {
      proxy_pass http://127.0.0.1:1337;
	    proxy_http_version 1.1;
      proxy_redirect off;
	    proxy_set_header Upgrade $http_upgrade;
	    proxy_set_header Connection 'upgrade';
	    proxy_set_header Host $host;
	    #proxy_cache_bypass $http_upgrade;
	 } 

With: 1137 is sails port.

Web servers

https://zinisoft.net/blog/tutorials/how-to-install-node-js-on-windows/

https://zinisoft.net/blog/tutorials/how-to-install-nodejs-on-linux-centos-7x/

Install MongoDB Server

MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era. No database makes you more productive. You can refer our article below to install:

https://zinisoft.net/blog/tutorials/how-to-install-mongodb-on-windows-10/

https://zinisoft.net/blog/tutorials/how-to-install-mongodb-4-x-on-centos/

Install RoboMongo

Code Editors

Here is a list of recommended code editors you need installing to start development:

    • Webstorm: This is commercial and one of the best IDEs for Javascript. To buy click here​

    • Atom Editor: A free and open-source tool with awesome features. Download here​

    • Visual Studio Code: This is another free IDE for JavaScript. Download here​

    • Nuclide: Is built as a single package on top of Atom to provide hackability and the support of an active community. Download here

You are required to download an IDE to open the project’s source code and start editing it. Many free IDEs are available for free and paid IDEs would definitely have extra features. We felt very comfortable with Visual Studio Code and it was used for building this project

Mobile Development

For Android:

For iOS:

Install Node.js and npm Package Manager Node is supported on most major operating systems, including MacOS X, Windows, and many flavors of Linux. The website has pre-built installers for plenty of platforms, so you can just hop on over to the downloads section of and choose the one that’ll work for you. You can refer our article to install.

Robo 3T (formerly Robomongo) is the free, lightweight, open-source MongoDB GUI with an embedded mongo shell, real auto-completion, and support for MongoDB 4.0.

You need to download Android Studio to build apps, to download Android Studio in your workstation, visit the following URL: Or use Genymotion, please also install the Genymotion free version from the following URL:

You need to download XCODE to build apps for iOS. To download XCODE in your Mac, visit the following URL:

nodejs.org
https://studio3t.com/download/
https://developer.android.com/studio/
https://www.genymotion.com/fun-zone/
https://developer.apple.com/xcode/
https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-centos-7
NGINX CONFIG TEMPLATE