f216adb3b2a60df6e14b166b86b148128ac46922
				
			
			
		
	Cash Dash Stacks
- A simple way to track expenses
 - cash budgeting in digital mode
 
Setup (Docker)
$ git clone [this repo]
$ docker-compose build
$ docker-compose run --rm server bash
# Puts you into the command line in the server container
$ > python manage.py migrate
$ > python manage.py createsuperuser --email admin@example.com --username admin
$ > exit
# You are now back in your machine bash
$ docker-compose down && docker-compose up -d
# Containers will all start
Setup (Not Docker)
$ cd frontend
$ npm i
$ cd ..
$ cd server
$ virtualenv -p python3 env
$ source env/bin/activate
(env) $ pip install -r requirements.txt
(env) $ python manage.py migrate --run-syncdb
(env) $ python manage.py createsuperuser --email admin@example.com --username admin
Running (Not Docker)
frontend
$ cd frontend
$ npm run start
backend
$ cd server
$ source env/bin/activate
(env) $ DEBUG=true python manage.py runserver 0.0.0.0:8000
Ideas
- put items in your wishlist and track savings to buy big-ticket items
 - view spending trends
 
Todo
Description
				
					Languages
				
				
								
								
									TypeScript
								
								60.8%
							
						
							
								
								
									Python
								
								25.8%
							
						
							
								
								
									SCSS
								
								8.4%
							
						
							
								
								
									HTML
								
								3.7%
							
						
							
								
								
									Shell
								
								0.5%
							
						
							
								
								
									Other
								
								0.8%