Install Finmars Platform
Here’s a very simple guide to install Finmars on your Ubuntu VM:
- Connect to your VM
Example:ssh -i /path/to/finmars-key.pem ubuntu@<Public-IP>
- Install Docker
sudo apt update sudo apt install -y ca-certificates curl gnupg lsb-release wget -qO- https://get.docker.com/ | sh sudo usermod -aG docker $USER newgrp docker
- Install Make
sudo apt install -y make git
- Create the finmars folder
sudo mkdir -p /opt/finmars sudo chown $USER:$USER /opt/finmars
- Clone the Finmars repo
cd /opt/finmars git clone https://github.com/finmars-platform/finmars-community-edition.git .
- Configure env
makecpmigrate.env.sample .env vim .env - Run database migrations
make migrate
- Start all services
make up