Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meraf00/gigrid-freelancers
A freelancing platform implemented for "Fundamentals of Software Engineering Course"
https://github.com/meraf00/gigrid-freelancers
Last synced: about 2 months ago
JSON representation
A freelancing platform implemented for "Fundamentals of Software Engineering Course"
- Host: GitHub
- URL: https://github.com/meraf00/gigrid-freelancers
- Owner: meraf00
- Created: 2022-12-01T17:41:30.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-04T07:59:35.000Z (8 months ago)
- Last Synced: 2024-05-04T08:35:57.043Z (8 months ago)
- Language: HTML
- Homepage:
- Size: 530 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Gigrid Freelancers
A freelancing platform incorporating the job posting, job matching, chat functionality and payment integration with [Chapa](https://chapa.co/).
## Cloning the repo
- `git clone https://github.com/meraf00/gigrid-freelancers.git`## Catching up with remote repo
- `git pull`## When working on your task
1. Catch up with remote
- `git pull`2. Branch from `dev` branch
- `git checkout dev`
- `git checkout -b your-task-branch`
3. Work on the task, edit, create... files on your branch4. Move back to `dev` branch
- `git checkout dev`5. Merge `your-task-branch` with `dev`
Make sure you are in `dev` branch
- `git merge your-task-branch`6. Update the remote `dev` branch with your new changes
Make sure you are in `dev` branch
- `git push -u origin dev`# Installing python modules and setting up the environment
## You only have to do this once (only the first time you clone the project)
- `pip install virtualenv`
- `virtualenv venv`
- `venv\Scripts\activate`## Any time the content of `requirements.txt` change
- `venv\Scripts\activate`
- `pip install -r requirements.txt`