-- Deprecated monorepo --
SimpleFi makes it easy to manage your decentralised finance investment portfolio.
- Clone the repo
git https://github.com/raphael-mazet/SimpleFi.git
- Create a .env file in the Prisma directory
DB_PORT=<yourport>
DB_USERNAME=<yourusername>
DB_PASSWORD=<yourpassword>
DB_HOST=<yourhost>
DB_NAME=<yourdbname>
DATABASE_URL = postgres://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}
- Start the backend server
cd server/
npm install
nodemon index.js
- start the client server
cd client/
npm install
npm start
- Express - fast, unopinionated, minimalist web framework for Node.js
- React - javaScript library for building user interfaces
- PostgreSQL - open source relational database
- Prisma - open source database toolkit
- ethers.js - lightweight javaScript library to interact with the Ethereum blockchain
Improvements and remixes are welcome.