No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 
Tanner Collin 0f52e73ba7 Only show stack IDs for each account hace 3 años
.vscode Dockerizing hace 3 años
devops user log in finished hace 3 años
frontend working first spec hace 3 años
node_modules wip hace 3 años
server Only show stack IDs for each account hace 3 años
.prettierrc cashstax database docs hace 3 años
README.md mo' readme tweaks hace 3 años
docker-compose.backend.yml adding backend dockerfile hace 3 años
docker-compose.yml user log in finished hace 3 años

README.md

Cash Dash Stacks

  • A simple way to track expenses
  • cash budgeting in digital mode

Setup (Docker)

$ git clone [this repo]

build containers

$ docker-compose build

OR build only backend

$ docker-compose -f docker-compose.backend.yml build

initialize database and seed data

$ 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@westwinds.io --username admin
$ > exit
# You are now back in your machine bash

Running (Docker)

# Containers will all (re)start
$ docker-compose down && docker-compose up -d

backend only

$ docker-compose down && docker-compose -f docker-compose.backend.yml up -d

Setup (Not Docker)

Frontend

$ cd frontend
$ npm i

Backend

$ cd server
$ virtualenv -p python3 env
$ source env/bin/activate
(env) $ pip install -r requirements.txt
(env) $ python manage.py makemigrations
(env) $ python manage.py migrate
(env) $ python manage.py seed
(env) $ DEBUG=true python manage.py runserver 0.0.0.0:8000

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

https://github.com/dank-inc/cash-stacks/projects