Skip to content

procaffeinator/iosd-frontend

 
 

Repository files navigation

iosd-frontend

IOSD Website - www.iosd.tech

This is the Website for International Organization of Softwware Developers.

A Bootstrap-Theme based site.

The site is divided into different sections which can be used accordingly.

To Use the Site as your template locally Clone or Download the Zip file of the site.

To Deploy This App on Heroku -

Deploy

  1. Have git installed

  2. Heroku Account – sign up at https://signup.heroku.com/.

  3. Download the Heroku Toolbelt – a command line application for managing your Heroku account

  4. Run heroku login in your terminal or command prompt and fill in your Heroku credentials

  5. Clone the Repository or Download the Zip folder for this Site.

  6. Navigate to your project in the command prompt.

cd Projects(Or the Directory in which it is saved)/iosd-frontend-master

  1. Create an index.php file with PHP opening and closing Tags and fill in this one line of code.

header( 'Location: /index.html' )

The index.php file will be served by Heroku before index.html. We need to make the browser redirect from index.php to index.html.

  1. Then we’ll use the command line tool called git to initialize or create a version of the site you want to deploy. To do that run the command:

git init git add -A

  1. Then you want to commit or save all the changes for the site. With a message describing what you’ve done.

git commit -m "My site ready for deployment."

  1. Run - heroku apps:create my-static-site-example

Insert your desired name instead of my-static-site-example as the name of the site.

  1. Run - git push heroku master Once you see “remote: Verifying deploy…. done.” the site has been deployed.

You can now visit your site at https://.herokuapp.com

About

IOSD Website

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 72.9%
  • CSS 18.3%
  • JavaScript 8.3%
  • PHP 0.5%