This project is a site for applying Likelion at MJU Seoul
First of all, clone this repository
$ git clone https://github.com/likelionmju/mjuseoul.likelion.org.git
Second, prepare a virtual environment with the django and several packages
$ python -m venv venv
The name of virtual environment is defined by "venv"
$ source venv/scripts/activate # for windows
$ source venv/bin/activate # for mac or linux
$ pip install -r requirements.txt
The required packages are defined in the requirements.txt file.
$ pip freeze > requirements.txt
If additional packages are installed, the following commands should be executed.
first time, you must change master branch to other branch
$ git checkout <branch_name> # backend or frontend
Insert 'backend' or 'frontend' instead of <branch_name>.
$ git pull origin <branch_name>
$ git add .
$ git commit -m "messages"
$ git push origin <branch_name>
Insert 'backend' or 'frontend' instead of <branch_name>.
.
├── .config
├── account
├── config
├── page
├── .gitignore
├── manage.py
├── README.md
└── requirements.txt
/.config
: setup files to deploy/account
: account app/config
: setup files in project/page
: page app.gitignore
: define what should be ignored in gitmanage.py
: django command-line utilrequirement.txt
: list of pip-packages to install
This project uses the MIT License