GithubHelp home page GithubHelp logo

kena421 / navprayasweb Goto Github PK

View Code? Open in Web Editor NEW

This project forked from gautamrajnitt/navprayasweb

0.0 0.0 2.0 10.97 MB

Official Website for Navprayas

Python 10.35% CSS 64.40% JavaScript 15.33% HTML 9.92%

navprayasweb's Introduction

NavprayasWeb

Official Website for Navprayas

Contributing

Git

Look up installation instructions here

  • Configure git to use your name and email for all commits:

git config user.name "Your Name"

git config user.email "[email protected]"

  • Use --global flag if you want it to be configured across system.

Configuration

  1. Fork this repo using the Fork button near the top. This will create a copy of this repo in your account.
  2. Clone the repo from your account.
  3. Configure local copy to use another remote repo.
    • In the project repo execute: git remote -v. This will show a list of urls and remote name. Make sure it's your account's url.
    • Add another one: git remote add upstream https://github.com/navprayasnp/NavprayasWeb.git. This is the original repo's url. Verify using git remote -v. Now, there will two entries.

Submit your changes:

  1. Before making any changes, create a new branch: git branch <branch_name>. Then move into that branch: git checkout <branch_name>. Most of the time these two steps can be combined into one: git checkout -b <branch_name>.
  2. Commit your changes after done. This is a tow step process: git add <name1> <name2>. names can be file names or directory names. Use . as name (git add .) to add all files/directories. Confirm all files have been added: git status. Now, commit: git commit -m "some message".

If no new files have been created, both steps can be combined: git commit -am "some message. 3. Push your changes to github. git push origin master 4. Create a pull request from github's ui. This will submit your branch to original owner's repo. He'll merge your changes.

Get updated code:

Recall the upstream configuration. That will be used for this step.

  1. Checkout master branch: git checkout master
  2. Pull and merge changes from original repo's owner: git pull upstream master. Now you have updated code.

NOTE: Never make changes in master branch. Before making change for the day, get updated code and update your current work in progress with same: Ensure you are in a work-in-progress branch, then, git rebase master. This will update your current branch with all upstream changes, and then apply your changes on top of that.

Development setup

VS Code: Recommended Editor

{
    "[python]": {
        "editor.rulers": [
            88
        ]
    },
    "emmet.triggerExpansionOnTab": true,
    "editor.codeActionsOnSave": {
        "source.organizeImports": true
    },
    "beautify.language": {
        "js": {
            "type": [
                "javascript",
                "json",
                "jsonc"
            ],
            "filename": [
                ".jshintrc",
                ".jsbeautifyrc"
            ]
        },
        "css": [
            "css",
            "less",
            "scss"
        ],
        "html": [
            "htm",
            "html",
            "django-html"   // add this.
        ]
    }
}

NOTE: Read about emmet here. This is an extremely handy tool for every web developer. Highly recommended.

Python 3.7

Look up installation instructions here

To install Python 3.7 on Linux, you have to build the executable yourself if it is not provided by your systems package manager (which is the case if you use Ubuntu). Read instruction here

Poetry

Read about Poetry here

Install the 1.0.0a2 version.

  1. Get the installer.

    • On Unix systems execute: curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py (worked for me)
    • On Windows download the installer from: https://github.com/sdispater/poetry/blob/master/get-poetry.py
  2. Execute the command: python get-poetry.py --version 1.0.0a2

  3. Change configuraiton to create virtualenv in the project's folder (This is recommended). poetry config settings.virtualenvs.in-project true

This will make poetry executable available to you. You can now manage an independent dev environment for this project.

Install project dependencies:

Execute poetry install in the project's root folder.

Activate virtualenv:

Execute source .venv/bin/activate (on unix systems) or source .venv/Scripts/activate (on windows). (Look up command for windows if this doesn't work)

Add your name and email (as configured in git) in pyprojects.toml file. You are now ready to work

pip install oauth2client pip install --upgrade google-api-python-client

backports.shutil-get-terminal-size==1.0.0 decorator==4.0.10 Django==1.8 enum34==1.1.6 ipython-genutils==0.1.0 pathlib2==2.1.0 pexpect==4.2.1 pickleshare==0.7.4 prompt-toolkit==1.0.9 ptyprocess==0.5.1 pycrypto==2.6.1 Pygments==2.1.3 simplegeneric==0.8.1 six==1.10.0 traitlets==4.3.1 wcwidth==0.1.7

pip install pycryptodome

navprayasweb's People

Contributors

ambujaak avatar kena421 avatar akashkumar2k10 avatar gautamrajnitt avatar mrmnzz avatar sushish-kumar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.