Official Website for Navprayas
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.
- Fork this repo using the
Fork
button near the top. This will create a copy of this repo in your account. - Clone the repo from your account.
- 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 usinggit remote -v
. Now, there will two entries.
- In the project repo execute:
- 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>
. - 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.
Recall the upstream
configuration. That will be used for this step.
- Checkout master branch:
git checkout master
- 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.
- Install from here
- Install python extension. Instructions
- Install Editorconfig plugin. Instructions
- Install django plugin. Instructions
- Install toml language plugin. Instructions
- Install beautifier. Instructions
- Configuration for VSCode (python specific):
{
"[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.
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
Read about Poetry here
Install the 1.0.0a2
version.
-
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
- On Unix systems execute:
-
Execute the command:
python get-poetry.py --version 1.0.0a2
-
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.
Execute poetry install
in the project's root folder.
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