FlyLog
FlyLog is a pilots logbook app, built using Rails.
Pilots can sign up using their GitHub accounts or with an email address.
Once signed up, pilots can start logging their flights, and comparing their progress against other pilots.
Usage
The app can be found at this link
To run the app locally clone this repo. Then run bundle install
in your terminal. Run the migrations using rake db:migrate
and you can seed the database with dummy data by running rake db:seed
. You can now run rails server
in your terminal; The app will be available at localhost:3000.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/achasveachas/FlyLog or by email to contact@yechiel.me This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Docker
docker build . -t flylog:1
docker run -p 3000:3000 -v ${PWD}/db:/app/db flylog:1
rake db:migrate