Index: .gitignore
===================================================================
--- .gitignore	(revision a67bdfc533d7479f3120a5558715293bd493c52d)
+++ .gitignore	(revision 83b29d427eb1c8067c0f0f51471013fbf43bcdde)
@@ -1,27 +1,16 @@
-# See https://www.dartlang.org/guides/libraries/private-files
+# Generated by Cargo
+# will have compiled files and executables
+/target
+.DS_Store
 
-# Files and directories created by pub
-.dart_tool/
+# These are backup files generated by rustfmt
+**/*.rs.bk
+
 .packages
 build/
-# If you're building an application, you may want to check-in your pubspec.lock
-pubspec.lock
-
-# Directory created by dartdoc
-# If you don't generate documentation locally you can remove this line.
-doc/api/
 
 # dotenv environment variables file
 .env*
 
-# Avoid committing generated Javascript files:
-*.dart.js
-*.info.json      # Produced by the --dump-info flag.
-*.js             # When generated by dart2js. Don't specify *.js if your
-                 # project includes source files written in JavaScript.
-*.js_
-*.js.deps
-*.js.map
-
-.flutter-plugins
-.flutter-plugins-dependencies
+# JetBrains
+.idea
Index: README.md
===================================================================
--- README.md	(revision a67bdfc533d7479f3120a5558715293bd493c52d)
+++ README.md	(revision 83b29d427eb1c8067c0f0f51471013fbf43bcdde)
@@ -1,2 +1,35 @@
 # FEiN
 Mobile application for personal finance tracking
+
+# Development
+
+Your new jumpstart project includes basic organization with an organized `assets` folder and a `components` folder.
+If you chose to develop with the router feature, you will also have a `views` folder.
+
+```
+project/
+├─ assets/ # Any assets that are used by the app should be placed here
+├─ src/
+│  ├─ main.rs # The entrypoint for the app. It also defines the routes for the app.
+│  ├─ components/
+│  │  ├─ mod.rs # Defines the components module
+│  │  ├─ hero.rs # The Hero component for use in the home page
+│  │  ├─ echo.rs # The echo component uses server functions to communicate with the server
+│  ├─ views/ # The views each route will render in the app.
+│  │  ├─ mod.rs # Defines the module for the views route and re-exports the components for each route
+│  │  ├─ blog.rs # The component that will render at the /blog/:id route
+│  │  ├─ home.rs # The component that will render at the / route
+├─ Cargo.toml # The Cargo.toml file defines the dependencies and feature flags for your project
+```
+
+
+
+### Serving Your App
+
+Run the following command in the root of your project to start developing with the default platform:
+
+```bash
+dx serve --platform android
+```
+
+
