Skip to content

seunghyun2269/ToyProject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Toy_project =

📖 Introduction

This project is a site for Student of Likelion X MJUSEOUL

🏁 Getting started

1. git clone

First of all, clone this repository

$ git clone https://github.com/hyunbin1/ToyProject.git

2. create virtual environment

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"

3. activate virtual environment

$ source venv/scripts/activate # for windows
$ source venv/bin/activate # for mac or linux

4. install pip packages

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.

5. change git branch

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>.

:Common times when you start project : Git command

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>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published