brianzzzasd / pokemoneeer

0 stars 0 forks source link

Pokemoneeer

Techs Used:

Presinstalls

After Cloning:

Backend Setup

cd pokemon-test/backend
cp .env.example .env

composer install 

php artisan migrate:fresh && php artisan key:generate && php artisan serve

php artisan pokemon:fill // to fill pokemons table or you can use the db inside /backend. (pokemon.sql)

Database name: pokemoneeer (or whatever you want, just update the .env database name)

Frontend Setup

cd ../frontend

cp .env.example .env

pnpm i && pnpm run dev

or if you don't have pnpm you can:

npm i && npm run dev