Web application to post project ideas and connect people with projects
This project demo will be run locally. The frontend and backend need to be run separately in different terminal windows.
Open the projector_server directory in your terminal and use the following commands to set up and run the Django server.
pipenv install
pipenv shell
./manage.py migrate
(This sets up the database)./manage.py runserver 8080
(The frontend depends on the port being 8080)
Open the projector_frontend directory in your terminal and use the following commands to set up and run the React app.
npm install
npm start