This project is a simple application that allows users to create posts and add comments to them.The project is set up for tests automation and continuous integration using GitHub Actions.
Para README em Português acessar no repositório o documento README-PTBR.md
You will need to instal:
- Clone this repository:
git clone https://github.com/philfujisawa/post-comment-react-app.git
- Navigate to project directory. Choose directory based on where you cloned the repository:
cd path/to/directory/post-comment-react-app
- Install the project dependencies:
npm install
After finish installation, you can run with this command:
npm run dev
This will start the React application in development mode. Open your browser and go to http://localhost:5173 to view the application.
To create an optimized production build of the application, run the following command:
npm run build
This will create a build
folder in the project directory containing the optimized files for production.
Now run cypress tests:
npx cypress open
Thank you so much!