This project is a site for Student of Likelion X MJUSEOUL
First of all, clone this repository
$ git clone https://github.com/hyunbin1/ToyProject.git
Second, prepare a virtual environment with the django and several packages. So you have to deleted my venv file, then make your own venv environment again. If you didn't do that, you can't use my project.
$ 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
I already add my package in this project. you just type this command.
$ pip install -r requirements.txt
cf] If you want people to recommend the package you have installed, enter the command.
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 it's very important thing. I recommend you to work in a Branch called Develop.
$ git checkout <branch_name> # "master" or "develop"
Insert 'master' or 'develop' instead of <branch_name>.
when you start the project=
$ git pull origin <branch_name>
Plz don't forget to push your work, when the work is done.
$ git add .
$ git commit -m "What did u do"
$ git push origin <branch_name>