CLICK HERE TO OPEN THE APPLICATION ONLINE
- or copy-paste https://jobly.elyorbek.com/ into your browser
- If you need to interact with the backend, the endpoint is: https://jobly-backend.elyorbek.com/
- Download this repository to your local computer
- Make sure you have
npminstalled or check this page on how install it - Make sure you have
psql(PostgreSQL) installed or check this page on how to install it - Open command prompt on your computer
- In your command prompt, navigate to the folder where you have this repository
- Go into backend folder and run
npm installto install dependencies - Go into frontend folder and run
npm installto install dependencies (Note: this might take a while) - Load the sample data into a PostreSQL database
- Start your PostgreSQL server by typing
sudo service postgresql start - Type
psqlto open PostgreSQL - Run the sql file by typing
\i backend/jobly.sql - Wait for the import to complete and accept any message that come up
- Exit psql by typing
\q - Open the backend folder
- Open the file called config.js
- Replace this string with your PostgreSQL configuration
postgresql://test:test@localhost/jobly- The format above is
postgresql://username:password@localhost/databasename - username = your PostgreSQL account username that you configured on install
- password = your PostgreSQL account password that you configured on install
- localhost = address to your PostgreSQL server. Usually just localhost
- databasename = is the name of the database. In our case its jobly
- The format above is
- Save the config.js file
- Start your PostgreSQL server by typing
- Go back to the root of the repository folder
- Go into backend folder and run
npm startto start the backend Express server - Go into frontend folder and run
npm startto start React application (Note: this might take a while) - The address
https://localhost:3000should open automatically but if it doesn't, go to that address in any browser (I recommend Chrome) - Have fun!










