https://github.com/micropyramid/opensource-job-portal
opensource jobportal in python django
https://github.com/micropyramid/opensource-job-portal
django-job-portal django-project job job-portal job-search jobs open-source python
Last synced: 5 months ago
JSON representation
opensource jobportal in python django
- Host: GitHub
- URL: https://github.com/micropyramid/opensource-job-portal
- Owner: MicroPyramid
- License: mit
- Created: 2019-12-11T10:42:38.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-05-08T15:40:29.000Z (5 months ago)
- Last Synced: 2025-05-15T04:07:56.042Z (5 months ago)
- Topics: django-job-portal, django-project, job, job-portal, job-search, jobs, open-source, python
- Language: HTML
- Homepage: https://peeljobs.com
- Size: 3.68 MB
- Stars: 415
- Watchers: 25
- Forks: 225
- Open Issues: 73
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
## [Open source job portal](https://peeljobs.com)
[](https://www.codacy.com/manual/ashwin/opensource-job-portal?utm_source=github.com&utm_medium=referral&utm_content=MicroPyramid/opensource-job-portal&utm_campaign=Badge_Grade)
[](https://travis-ci.org/MicroPyramid/opensource-job-portal)
[](https://coveralls.io/github/MicroPyramid/opensource-job-portal?branch=master)- Please visit [OpenSourceJobPortal](https://opensource-job-portal.readthedocs.io/en/latest/) for the latest documentation with unlimited free job posting, Social Api's authentication.
- Opensource Job Portal developed using python, django framework with unlimited free job posting and Social Api's authentication.
## Recruiter
Recruiter can register using email or google login to post job.
- Can post jobs to social networking sites like facebook, twitter, linkedin.
- Walk-in's
- Copy An Existing Job Post, Deactivate.
- Add localtion in Google Maps
- Post their job to sociasudo usermod -aG docker $USERl networking sites.## Portal
- Job Alerts
- New Mobile Design
- Normal Search and Advanced Search
- Email Notifications### Useful tools and packages
```sh
pipdeptree # to see pip dependancy tree
black # to format code to meet python coding standards
pip-check -H # to see upgradable packages
```## Setup
Following are the setup instruction for ubuntu 20.04.
```bash
sudo apt install git postgresql python3 python3-dev python3-virtualenv build-essential ruby ruby-dev gem redis-server memcached redis-tools virtualenv apt-transport-https ca-certificates curl software-properties-common gcc g++ make -y
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo npm install -g less
```### Install and configure sass and less compilers
```bash
sudo gem install sass
```You need to create symbolic link if you get error locating lessc
here my lessc file locatin is /usr/bin/lessc
you can find yours with this command `which lessc````bash
sudo ln -s /usr/bin/lessc /usr/local/bin/lessc
```#### Install virtualenvwrapper
pip install virtualenvwrapper
add the following to your path```export PATH="$PATH:/home/ubuntu/.local/bin"```
```source /home/ubuntu/.local/bin/virtualenvwrapper.sh```##### Install requirements
```bash
cp env.md .env
sed -i 's/^SECRET_KEY=.*/SECRET_KEY="'$(openssl rand -base64 50 | tr -d '\n' | tr -d '=')'"/' .env
pipenv install -d
python manage.py migrate
python manage.py loaddata industries
python manage.py loaddata qualification
python manage.py loaddata skills
python manage.py loaddata countries
python manage.py loaddata states
python manage.py loaddata cities
python manage.py update_index
python manage.py createsuperuser
```For env variables, refer to env.md in source directory and you need to create a .env file to keep all env variables with their respective values.
##### Create db and import basic data to postgresql
sudo -u postgres psql
##### to change postgres password
ALTER USER postgres PASSWORD 'myPassword';
create database peeljobs
sudo -u postgres -i psql peeljobs < init_db/db_init.sql##### Install docker and Run elasticsearch
to add user to docker group
```sudo usermod -aG docker $USER```
restart to apply changes.```bash
docker run -d --name elasticsearch -p 127.0.0.1:9200:9200 -p 127.0.0.1:9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.17.6
```##### Create index
Finally `update_index` command will freshen all of the content in your index. It iterates through all indexed models and updates the records in the index.
```bash
python manage.py update_index
```##### Load data to postgres Database
Load data to cities, companies and etc using json files in "peeldb/fixtures" folder. please check below command for reference.
`python manage.py loaddata cities`