Skip to content

Launching Changes from Webflow.io

Myeong Lee edited this page Jun 8, 2018 · 1 revision

The basic design of the web interface is done on Webflow.io.

After making changes on Webflow.io, you need to:

  1. download the web files as a zip file.
  2. extract the file and overwrite entire files inside the Git repository.
  3. update the Git repo and apply it to the test server, then, to the production server.

The details for launching the Webflow.io changes are as follows:

Updating website

Below is the sequence of terminal commands to update a server

# ssh (e.g., login) to the remote server. To have access to the server, you need to talk to admin users.
# for test server
ssh [email protected]

# for the production server
ssh [email protected]

# change to the local copy of the impact-map repo (Assuming you already have the Git folder inside the server)
cd impact-map

# git pull the most recent version of the site
git pull origin master

# copy updated files into /var/www/html 
sudo cp -R html /var/www/

# websites updated have been published.

# Log out 
exit