This is Quacker, a Twitter inspired social media made for my final project of this year.
If you want to be able to use the app in a complete way, you should clone the API repository.
First you have to clone the repository:
git clone https://github.com/Dominguezd01/Quacker.gitGo to the directory
cd QuackerInstall all the dependencies:
npm installCreate a .env file in the root of the project with the following variables, change their values you need
PUBLIC_API= http://localhost:3333 #Change this to any url you want
PUBLIC_WS= http://localhost:3334 #Change this to any url you want
Start the development server in the background
npm run devOr start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of the app:
npm run build