- ruby 2.7.5p203
- bundler 2.1.4
- sqlite3 3.31.1
- nodejs >= 4.18.3
clone the repository and go to the organizer folder:
git clone git@github.com:AronnaxSpace/organizer.git
cd organizercreate .env file and copy the .env.example content into it
install ruby:
rbenv install 2.7.5install nodejs, npm and yarn:
sudo apt update
sudo apt install nodejs npm
npm install --global yarninstall sqlite3 and libsqlite3-dev
sudo apt install sqlite3 libsqlite3-devinstall bundler:
gem install bundlerinstall ruby dependencies:
bundle installinstall js dependencies:
yarn installset database:
rake db:setuprun these commands in 2 parallel terminal sessions:
shotgun
yarn run dev