Background
I came up with this idea as I was getting my dad to switch to open source tools to save money. I tried finding an open alternative to EveryDollar, and it stumped me. EveryDollar has so many users, yet there isn't even an open web-based budgeting app, let alone one that supports connecting with banking apps and/or receipts. It is for this reason that I decided to make AllCash, the open source budgetting app to help you put all of your cash to work.
Look at the Nuxt documentation to learn more.
Make sure to install dependencies:
docker pull mongodb/mongodb-community-server:latest# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun installPrefill .env with absolutely nessecary variables
echo "mongodb://mongo:27017/your-db" > .envStart the development server on http://localhost:3000:
docker run --name mongodb -p 27017:27017 -d mongodb/mongodb-community-server:latest# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run devBuild the application for production:
docker run --name mongodb -p 27017:27017 -d mongodb/mongodb-community-server:latest# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run buildLocally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run previewCheck out the deployment documentation for more information.