Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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"

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 branch

4. 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`