Skip to content
Akshay Arora edited this page Aug 13, 2017 · 31 revisions

This page is a WIP

TOC

  1. Philosophy
  2. Installation Instructions
  3. Contributing

Dev Sprint Summaries/Blog Posts

  1. Our First Dev Sprint meant to get people familiarized with kivy.

After this first Devspring it was decided that we would start working on the app from scratch. For this purpose the master branch was emptied and we have started with blank dir.

Step 1: We setup a basic structure for the app

PyCon-Mobile-App
|
|___ LICENSE
|___ Makefile
|___ README.md
|___ eventsapp
       |___ main.py: "This is the main entry point of our application"
       |___ uix: "This is where our user interface elements go."
             |___ screens: "This is where all our UI screens of the app go."
|
|___ tools: "This is where all our tools including assets etc go."
       |___ images: "This is where all our image assets go."
       |___ raw_assets: "This is where our raw assets from the design team exist."
|___ tests: "All our tests go here"

Step 2: Design And Architecture of the project

Keeping in mind the following items::

  • UI Design of the app ref
  • Features ref
  • Usage pattern of the app
Clone this wiki locally