Skip to content

s0ph1e/travel-from-ukraine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

travel-from-ukraine

Google map with visa-free countries for ukrainians.

Uses data from Ministry of Foreign Affairs of Ukraine.

Install and run

Local development

  • you should have bower installed (requires node.js, npm and git)
  • run bower install to install dependencies
  • run python -m SimpleHTTPServer 7777 to start the server
  • open localhost:7777

Production

The service is deployed to Github Pages from gh-pages branch that contains installed bower dependencies.

How to deploy changes from master

Currently the process is manual.

  • merge master branch to gh-pages:
    • git checkout gh-pages
    • git merge master
  • if dependencies were changed - install & commit them:
    • bower install
    • git add bower_components
    • git commit -m "Update bower dependencies"
  • push changes to gh-pages:
    • git push origin gh-pages