[ 항해99] 1일차 Website project

IT/Bootcamp 항해99|2021. 6. 8. 01:14

 


항해 99

 

1일차 :

 

목요일까지 웹사이트를 만들어야한다.

 

새로 배운것: 

 

1. Github

 existing directory => git hub

 git ignore file설정 (이미 git ignore file이없이 commit했을때) 

 

 macbook에 ds folder? 랑 venv폴더를 없애야한다.

 

아래와같이  venv와 그외 macbook 

 

git ignore만들어주는 웹사이트가있다:

https://www.toptal.com/developers/gitignore

@@ -1,63 +0,0 @@
# Created by https://www.toptal.com/developers/gitignore/api/macos
# Edit at https://www.toptal.com/developers/gitignore?templates=macos

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Directories #
/build/
/bin/
target/
 
# OS Files #
.DS_Store
  
*.class
 
# Package Files #
*.jar
*.war
*.ear
*.db
      
# Eclipse #
.project
.metadata
.classpath
.settings/
.loadpath
 
bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
local.properties
/src/main/resources/rebel.xml

# Virtualenv
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
.Python
[Bb]in
[Ii]nclude
[Ll]ib
[Ll]ib64
[Ll]ocal
[Ss]cripts
pyvenv.cfg
.venv
pip-selfcheck.json
# End of https://www.toptal.com/developers/gitignore/api/macos
tough .gitignore

설정후 


git rm -r --cached .

git add .

git commit -m "msg"

git push 

https://velog.io/@aquarius1997/gitignore-%EC%84%A4%EC%A0%95

 

gitignore 설정

Git으로 프로젝트 버전관리를 할 때 불필요한 파일들은 Github에 업로드하지 말아야 하는데, 이럴 경우 gitignore 설정을 해주면 된다.방법은 간단하다.프로젝트 최상위 디렉터리에 .gitignore 파일을

velog.io

 

 

2.  Web Plus 강의 :

Font-awsome :  여러가지 Logo

 

<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

 

3. Jinja2 문법

반응형

댓글()