Skip to content

Instantly share code, notes, and snippets.

View uguremirmustafa's full-sized avatar
👨‍💻
Evolving into perfect version of me

Uğur Emirmustafaoğlu uguremirmustafa

👨‍💻
Evolving into perfect version of me
View GitHub Profile
@justincy
justincy / README.md
Last active April 5, 2024 22:19
Configure Storybook to work with Next.js, TypeScript, and CSS Modules

In addition to the Storybook for React setup, you'll also need to install these packages:

npm i -D @babel/core babel-loader css-loader style-loader
@gjerokrsteski
gjerokrsteski / remove env file from git forever
Last active May 12, 2024 16:25
remove env file from git history forever
echo '.env' >> .gitignore
git rm -r --cached .env
git add .gitignore
git commit -m 'untracking .env'
git push origin master
@bmaupin
bmaupin / free-database-hosting.md
Last active May 25, 2024 03:54
Free database hosting
@bradtraversy
bradtraversy / docker_wordpress.md
Last active May 16, 2024 11:18
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes
@benawad
benawad / Resolver.ts
Last active June 1, 2021 15:59
middleware role
@UseMiddleware(hasRole("admin"))
@Query(() => String)
async hello() {
return "Hello World!";
}
@bmaupin
bmaupin / free-backend-hosting.md
Last active May 23, 2024 04:42
Free backend hosting