Skip to content

Voyager website: A space website that can be used as a template in the future for space-related topics.

Notifications You must be signed in to change notification settings

pulkithanda/voyager-hf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a web development project for hacktoberfest made with HTML, CSS, JS and Python (flask).
Voyager website: NASA & SpaceX have successfully helped humanity establish a multi-planetary presence.
A space website that can be used as a template in future for space related topics.

A Glimpse of the website

Contribution Guidelines🏗

Are there any missing features which we can add to make it the best template available❓ or you are here just to help out with the issues (see issues) or to contribute towards hacktoberfest 2021, well welcome! To start contributing, follow the below guidelines:

  • We recommend working within a virtual environment whenever using Python for projects. This keeps your dependencies for each project separate and organaized. Instructions for setting up a virual enviornment for your platform can be found in the python docs
  D:\xyz_folder> git clone https://github.com/pulkithanda/voyager-hf.git
  D:\xyz_folder\voyager-hf>pip install -r requirements.txt
  D:\xyz_folder\voyager-hf>click on run.py
  
  https://github.com/pulkithanda/voyager-hf.git

You're done! Now you can help with the issues (issues tab and also the issues file) or maybe even add some sections (team section or missions etc) and after accepting the PR It'll be counted as your contribution to open source and for hacktoberfest in the month of october! Thanks for coming! Do star it & follow my github if you liked the project and for tons of other projects!

Deployment methods:

  1. Deploy Forked repository (Heroku)

    • First fork the repository.
    • Login to your heroku account.
    • Create new app & give a name.
    • Connect your GitHub account to heroku.
    • Search the repo you want to deploy and then deploy.
  2. Deploy local repository (Heroku)

    • Prerequisites : Heroku cli
    • First make a new app on heroku & give a name.
    • Clone the repository to your local system.
    • Login to your heroku account:
    heroku login 
    
    • Set git remote repository to heroku:
    heroku git:remote -a <appName you created earlier>
    
    • Install gunicorn:
    pip install gunicorn   
    
    • Document all dependencies:
    pip freeze > requirements.txt  
    
    • Add script that execude on server in procfile:
    web: gunicorn run:app    
    
    • Push the branch to heroku that you want to deploy:
    git push heroku master