studiostuckn.com, a portfolio website to showcase fashion projects
Website developed with Javascript, React, Next.js, CSS and Tailwind. Assets are bundled with Webpack. Application is run on Netlify.
Clone the project
git clone [email protected]:maricalmer/studio-stuckn my-project
Go to the project directory and remove git logs
cd my-project
rm -rf .git
Install dependencies
bundle install
yarn install
Make sure you have ./node_modules/.bin in your $PATH:
echo $PATH
# You should see `./node_modules/.bin` in the list
If it's not the case, add it:
cd ~/code/dotfiles/<your_github_nickname>
echo 'export PATH="./bin:./node_modules/.bin:${PATH}"' >> zshrc
cd ~/code/<your_github_nickname>/my-project
source ~/.zshrc
Start the server
npm run dev
# or
yarn dev
# or
pnpm dev
Open http://localhost:3000 with your browser to see the result.