Dunamis (Ancient Greek: δύναμις) is a Greek philosophical concept meaning "power", "potential" or "ability"
CNLC '24 Coding Submission | Platform where students, co-op managers, SHSM heads and organizers can collaborate.
Now deployed on mydunamis.ca :P
Dunamis is a comprehensive platform designed to bridge the gap between students, educators, and businesses in career development and co-operative education. It leverages technology to provide an integrated environment where users can explore educational opportunities, co-op placements, and professional mentorship.
- Chatbot Assistance: Guided navigation throughout the platform to help users find the necessary information and resources.
- Co-op Matching System: A dynamic interface where businesses can post opportunities and students can apply for them, powered by real-time data from Ontario's live co-op listings.
- SHSM Collaboration Platform: A dedicated space for SHSM managers and participants to plan trips, certifications, and find collaborators.
- Contact Tracker: A CRM-style feature for tracking communications with partners, including direct email capabilities within the platform.
- User Profiles: Customized profiles for students, teachers, and company representatives, allowing for resume uploads, role listings, and direct communication.
- Student: Students can display their resume and transcript on their profile to submit applications to various listed co-op positions. Students can communicate directly with co-op managers to facilitate career development.
- Co-op Manager: Co-op managers can represent their company and list available roles for which they are recruiting. Subsequently, they can list targetted skill sets and look for students in certain SHSM programs or courses.
- SHSM Managers: Teachers running SHSM programs at their school can list their subjects, courses and a description of their program (given that SHSM can vary from school to school). Dunamis can help managers find companies with which to partner for trips and certifications.
git clone https://github.com/zanzilla22/Dunamiscd Dunamis-
Create your own MongoDB account by visiting the MongoDB website and signing up for a new account.
-
Create a new database or cluster by following the instructions provided in the MongoDB documentation. Remember to note down the "Connect to your application URI" for the database, as you will need it later. Also, make sure to change
<password>with your own password -
add your current IP address to the MongoDB database's IP whitelist to allow connections (this is needed whenever your ip changes)
-
Check a file named .env in the /api directory.
This file will store environment variables for the project to run.
In the .env file, find the line that reads:
DATABASE="your-mongodb-uri"
Replace "your-mongodb-uri" with the actual URI of your MongoDB database.
In your terminal, navigate to the /api directory
cd backendthe urn the following command to install the backend dependencies:
npm installThis command will install all the required packages specified in the package.json file.
While still in the /api directory of the project, execute the following command to run the setup script:
npm startThis should connect to the backend server. Without issue
This command will start the backend server, and it will listen for incoming requests.
Open a new terminal window, and run the following command to install the frontend dependencies:
cd clientnpm installAfter installing the frontend dependencies, you need to change openssl to legacy:
set NODE_OPTIONS=--openssl-legacy-providerThen run the following command in the same terminal to start the frontend server:
npm startThis command will start the frontend server, and you'll be able to access the website on localhost:3000 in your web browser.
❗ If you encounter an OpenSSL error while running the frontend server, follow these additional steps:
Reason behind error: This is caused by the node.js V17 compatible issues with OpenSSL, see this and this issue on GitHub.
Try one of these and error will be solved
-
upgrade to Node.js v20.
-
Enable legacy OpenSSL provider
Here is how you can enable legacy OpenSSL provider
- On Unix-like (Linux, macOS, Git bash, etc.)
export NODE_OPTIONS=--openssl-legacy-provider- On Windows command prompt:
set NODE_OPTIONS=--openssl-legacy-provider- On PowerShell:
$env:NODE_OPTIONS = "--openssl-legacy-provider"Here is reference about enabling legacy OpenSSL provider
After trying above solutions, run below command
npm startIf you still facing issue, then follow this stackoverflow thread. It has so many different types of opinions. You definitely have solution after going through the thread.