1.4 KiB
1.4 KiB
A simplified Jira clone built with React and Node
Auto formatted with Prettier, tested with Cypress 🎗
Visit the live app | View client | View API
Setting up development environment
- Install postgreSQL if you don't have it already and create a database named
jira_development. git clone https://github.com/oldboyxx/jira_clone.git- Create an empty
.envfile in/api, copy/api/.env.examplecontents into it, and fill in your database username and password. npm run install-dependenciescd api && npm startcd client && npm startin another terminal tab- App should now be running on
http://localhost:8080/
Running cypress end-to-end tests
- Set up development environment
- Create a database named
jira_testand start the api withcd api && npm run start:test cd client && npm run test:cypress

