aspnet-starter-kit
Cross-platform web development with Visual Studio Code, C#, F#, JavaScript, ASP.NET Core, EF Core, React (ReactJS), Redux, Babel. Single-page application boilerplate.
파일 탐색기
최종 버전 다운로드 (.zip)- launch.json
- settings.json
- tasks.json
- Button.js
- package.json
- Header.css
- Header.js
- Layout.css
- Layout.js
- Logo.js
- Navigation.js
- package.json
- Link.js
- package.json
- markdown-loader.js
- routes-loader.js
- About.js
- package.json
- ErrorPage.css
- ErrorPage.js
- package.json
- Home.js
- package.json
- history.js
- main.js
- router.js
- routes.json
- store.js
- .eslintrc
- test.js
- how-to-integrate-material-design-lite.md
- how-to-use-sass.md
- README.md
- routing-and-navigation.md
- apple-touch-icon.png
- browserconfig.xml
- crossdomain.xml
- favicon.ico
- humans.txt
- robots.txt
- tile-wide.png
- tile.png
- AccountController.cs
- HomeController.cs
- DatabaseContext.cs
- User.cs
- Index.cshtml
- appsettings.json
- server.csproj
- Startup.cs
- web.config
- SampleTest.cs
- server.test.csproj
- .editorconfig
- .gitattributes
- .gitignore
- .travis.yml
- CONTRIBUTING.md
- jsconfig.json
- LICENSE.txt
- package.json
- README.md
- run.js
- starter-kit.sln
- webpack.config.js
- yarn.lock
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/kriasoft/aspnet-starter-kit
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd aspnet-starter-kit
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. .NET
보통 추천cd server.test
이 프로젝트의 관련 파일이 하위 폴더 안에 있어서, 먼저 그 폴더로 이동합니다.
dotnet restore
프로젝트에 필요한 패키지를 내려받습니다.
dotnet run
프로젝트를 빌드하고 바로 실행합니다.
dotnet run 실행 후 터미널에 나타나는 안내 메시지나 주소를 확인하세요.
3. Node.js
쉬움사전 준비물
│── package.json # The list of project dependencies and NPM scripts
이 명령어를 터미널에 그대로 입력해 실행하세요.
$ npm install -g yo
package.json에 명시된 라이브러리들을 내려받아 설치합니다.
$ npm install -g generator-aspnetcore
package.json에 명시된 라이브러리들을 내려받아 설치합니다.
$ npm install # Install both Node.js and .NET Core dependencies
package.json에 명시된 라이브러리들을 내려받아 설치합니다.
$ node run # Compile and lanch the app, same as running: npm start
개발/실행 서버를 켭니다.
명령어 실행 후 터미널에 나타나는 주소(보통 http://localhost:3000 형태)를 브라우저에서 열어보세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
