Skip to content

Latest commit

 

History

History
73 lines (66 loc) · 1.59 KB

README.md

File metadata and controls

73 lines (66 loc) · 1.59 KB

Project usage guide

Dependency installation

To use this project without installation of everything by yourself just use

npm install package-lock.json

npm scripts

🔨 build

Builds project into /public/ using Vite with SASS

npm run build

⚡ start

First builds project with build, then runs live-server on localhost with index.html file from /public

npm run dev

Project structure

📦iatp-dev-website
 ┣ 📂.git
 ┣ 📂.node_modules
 ┣ 📂public
 ┃ ┣ 📂assets
 ┃ ┃ ┣ 📂img
 ┃ ┃ ┣ 📂fonts
 ┃ ┃ ┣ 📂css
 ┃ ┃ ┗ 📂js
 ┃ ┣ 📜about-us.html
 ┃ ┣ 📜index.html
 ┃ ┣ 📜members.html
 ┃ ┗ 📜projects.html
 ┣ 📂src
 ┃ ┣ 📂assets
 ┃ ┃ ┣ 📂fonts
 ┃ ┃ ┗ 📂img
 ┃ ┣ 📂project-blocks
 ┃ ┃ ┣ 📂abstracts
 ┃ ┃ ┃ ┗ 📜__abstracts-dir.scss
 ┃ ┃ ┣ 📂base
 ┃ ┃ ┃ ┣ 📜__base-dir.scss
 ┃ ┃ ┃ ┗ 📜_reset.scss
 ┃ ┃ ┣ 📂blocks
 ┃ ┃ ┃ ┗ 📜__blocks-dir.scss
 ┃ ┃ ┣ 📂components
 ┃ ┃ ┃ ┗ 📜__components-dir.scss
 ┃ ┃ ┣ 📂layout
 ┃ ┃ ┃ ┗ 📜__layout-dir.scss
 ┃ ┣ 📂about-us
 ┃ ┃ ┣ 📜about-us-index.js
 ┃ ┃ ┗ 📜about-us.html
 ┃ ┣ 📂members
 ┃ ┃ ┣ 📜members-index.js
 ┃ ┃ ┗ 📜members.html
 ┃ ┣ 📂projects
 ┃ ┃ ┣ 📜projects-index.js
 ┃ ┃ ┗ 📜projects.html
 ┃ ┣ 📜index.html
 ┃ ┣ 📜index.js
 ┃ ┗ 📜index.scss
 ┣ 📜LICENSE
 ┣ 📜README.md
 ┣ 📜package-lock.json
 ┣ 📜package.json
 ┗ vite.config.js