Skip to content

s00ngle/re_hanalum

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

re_hanalum

re_hanalum is a django website to communicate with hanmin high school students & graduates

version

Usage

  1. fork repository https://github.com/ryou73/re_hanalum

  2. clone your re_hanalum repository

$ git clone `https://github.com/YOUR_GITHUB_USERNAME/re_hanalum.git`
  1. make venv & pip install
$ cd re_hanalum
$ python -m venv venv
$ pip install -r requirements.txt
  1. make secrets.json file in re_hanalum/hanalum/
{
    "SECRET_KEY" : "DJANGO_SECRET_KEY",
    "EMAIL_PASSWORD" : "APP_PASSWORD"
}
  1. migrate & run server
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver

Contributing

How to contribute

  1. fork repository https://github.com/ryou73/re_hanalum

  2. clone your re_hanalum repository

$ git clone `https://github.com/YOUR_GITHUB_USERNAME/re_hanalum.git`
  1. make venv & pip install
$ cd re_hanalum
$ python -m venv venv
$ pip install -r requirements.txt
  1. change your git branch
$ git checkout develop
  1. commit, push

First, write your code. then,

$ git add YOUR_CODE_FILE
$ git commit -m "YOUR_COMMIT_MESSAGE"
$ git push origin develop
  1. go to your repository & send pull request

How to Synchronize origin repository

  1. add remote url
$ git remote add upstream https://github.com/ryou73/re_hanalum
  1. fetch & merge
$ git fetch upstream
$ git checkout BRANCH_NANE
$ git merge upstream/master
  1. reflect your remote repository
$ git push origin master

LICENSE

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 48.6%
  • CSS 30.1%
  • HTML 11.0%
  • Python 10.3%