Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/willprice/mentor-matcher
A website for mentees to find mentors and mentors to offer their wisdom to others
https://github.com/willprice/mentor-matcher
Last synced: about 21 hours ago
JSON representation
A website for mentees to find mentors and mentors to offer their wisdom to others
- Host: GitHub
- URL: https://github.com/willprice/mentor-matcher
- Owner: willprice
- License: gpl-3.0
- Created: 2024-08-30T13:45:45.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-11-02T20:59:57.000Z (12 days ago)
- Last Synced: 2024-11-02T21:25:56.591Z (12 days ago)
- Language: Go
- Size: 51.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mentor-matcher
A website for mentees to find mentors and mentors to offer their wisdom to othershttps://mentor-matcher.fly.dev/
## Local Installation
This project uses GNU Make to automate the setup process. Ensure that you have a `.env` file in the
root directory of the project. See `.env.example` for an example of the required environment
variables.To build the binaries, run the following command:
```bash
make
```Alternatively, you can use Docker compose to run the project locally. You'll still need the `.env`
file. To do so, run the following command:```bash
make docker-up
```To stop the Docker containers, run the following command:
```bash
make docker-down
```