re_hanalum is a django website to communicate with hanmin high school students & graduates
-
fork repository
https://github.com/ryou73/re_hanalum
-
clone your
re_hanalum
repository
$ git clone `https://github.com/YOUR_GITHUB_USERNAME/re_hanalum.git`
- make venv & pip install
$ cd re_hanalum
$ python -m venv venv
$ pip install -r requirements.txt
- make secrets.json file in re_hanalum/hanalum/
{
"SECRET_KEY" : "DJANGO_SECRET_KEY",
"EMAIL_PASSWORD" : "APP_PASSWORD"
}
- migrate & run server
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver
-
fork repository
https://github.com/ryou73/re_hanalum
-
clone your
re_hanalum
repository
$ git clone `https://github.com/YOUR_GITHUB_USERNAME/re_hanalum.git`
- make venv & pip install
$ cd re_hanalum
$ python -m venv venv
$ pip install -r requirements.txt
- change your git branch
$ git checkout develop
- commit, push
First, write your code. then,
$ git add YOUR_CODE_FILE
$ git commit -m "YOUR_COMMIT_MESSAGE"
$ git push origin develop
- go to your repository & send pull request
- add remote url
$ git remote add upstream https://github.com/ryou73/re_hanalum
- fetch & merge
$ git fetch upstream
$ git checkout BRANCH_NANE
$ git merge upstream/master
- reflect your remote repository
$ git push origin master