flight analysis and competition scoring
The most advanced flight analysis and competition scoring
In April 2014 I finally got the GPS tracker. After a couple of wingsuit jumps with it I wanted to check my results and faced the following problem: all existing services (free or commercial) didn’t show any results at all or showed it in a very uncomfortable way.
So I decided to create a new application.
asdf
- See https://asdf-vm.com/guide/getting-started.htmlasdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
asdf install nodejs latest
asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git
asdf install ruby latest
postgres
with sudo apt-get install postgresql libpq-dev
yarn
with npm install -g yarn
git clone https://github.com/skyderby/skyderby.git
cd
into the repositoryasdf install
bundle install
yarn
cp .env.example .env
/etc/postgresql/12/main/pg_hba.conf
as follows:
- local all all peer
+ local all all trust
- host all all 127.0.0.1/32 md5
+ host all all 127.0.0.1/32 trust
sudo service postgresql restart
rails
commands to initialize a database:
rails db:create
rails db:schema:load
rails db:seed
bin/webpacker-dev-server
rails server
rails console
and enter the following commands:
User.create!(email: '[email protected]', password: 'asecretpw', password_confirmation: 'asecretpw', profile_attributes: { name: 'Admin User' })
User.last.update!(confirmed_at: Date.today)
Role.pluck(:name)
User.last.roles << Role.find_by(name: 'admin')
http://127.0.0.1:3000
Alex and Svetlana Rubinshtein, Shane Dunn, Aleksey Shatilov, Valeriy Salcutsan, Simon Repton, Evgeniy Pavlov, Egor Orlow, Simon Perriard, Aleksey Galda, Flo Kas, Csaba Szörényi, Aleksandr Zharikov, Ekaterina Larina, Tatyana Holm, Yulia Makoveeva, Daniel Duarte, Leonid Sigalov, Sergey Panteleev.
Code released under AGPLv3 license.
Note:
Skyderby is using Highcharts JS library which is licensed under Creative Commons Attribution-NonCommercial 3.0 License.