All Projects → manjurulhoque → Django Job Portal

manjurulhoque / Django Job Portal

Licence: mit
Job portal application using Django

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Django Job Portal

Django Tutorials
Source code for my free YouTube series on the Django web framework for Python.
Stars: ✭ 188 (-4.08%)
Mutual labels:  django
Django Eraserhead
💂🏻 Django package that provides hints to optimize database usage by deferring unused fields (and more)
Stars: ✭ 194 (-1.02%)
Mutual labels:  django
Repoll
Redis管理平台Repoll,现已开源,基于redis3.x,支持单机、哨兵以及集群模式
Stars: ✭ 196 (+0%)
Mutual labels:  django
Drf Yasg
Automated generation of real Swagger/OpenAPI 2.0 schemas from Django REST Framework code.
Stars: ✭ 2,523 (+1187.24%)
Mutual labels:  django
Django Environ
Django-environ allows you to utilize 12factor inspired environment variables to configure your Django application.
Stars: ✭ 2,425 (+1137.24%)
Mutual labels:  django
Bolt Python
A framework to build Slack apps using Python
Stars: ✭ 190 (-3.06%)
Mutual labels:  django
Django Mock Queries
A library for mocking django queryset functions in memory for testing
Stars: ✭ 187 (-4.59%)
Mutual labels:  django
Django Easy Timezones
Easy timezones for Django based on GeoIP
Stars: ✭ 195 (-0.51%)
Mutual labels:  django
Django Oauth Toolkit
OAuth2 goodies for the Djangonauts!
Stars: ✭ 2,431 (+1140.31%)
Mutual labels:  django
Django Sspanel
用diango开发的shadowsocks/V2ray面板
Stars: ✭ 2,538 (+1194.9%)
Mutual labels:  django
Docker Django Webpack Skeleton
Django Skeleton W/ Docker Dev & Production W/ Webpack 2 W/ BabelJS W/ Sass W/ PostgreSQL
Stars: ✭ 191 (-2.55%)
Mutual labels:  django
Movieweb python
🎬 Django 搭建的一个视频网站
Stars: ✭ 193 (-1.53%)
Mutual labels:  django
Rengorum
🚀 Forum app built in React, Redux & Django
Stars: ✭ 194 (-1.02%)
Mutual labels:  django
Django Test Migrations
Test django schema and data migrations, including migrations' order and best practices.
Stars: ✭ 188 (-4.08%)
Mutual labels:  django
Django Bootstrap3
Bootstrap 3 integration with Django.
Stars: ✭ 2,271 (+1058.67%)
Mutual labels:  django
Flango
A Django template for using Flask for the frontend, Django for the backend.
Stars: ✭ 188 (-4.08%)
Mutual labels:  django
Django Recommends
A django app that builds item-based suggestions for users.
Stars: ✭ 194 (-1.02%)
Mutual labels:  django
Django Secretballot
🗳 django voting application that allows semi-anonymous voting
Stars: ✭ 197 (+0.51%)
Mutual labels:  django
Django Webpack Loader
Transparently use webpack with django
Stars: ✭ 2,327 (+1087.24%)
Mutual labels:  django
Django Rest Auth
This app makes it extremely easy to build Django powered SPA's (Single Page App) or Mobile apps exposing all registration and authentication related functionality as CBV's (Class Base View) and REST (JSON)
Stars: ✭ 2,289 (+1067.86%)
Mutual labels:  django

Django Job Portal

An open source online job portal.

forks stars watchers github Actions

Live: Demo or Second Demo

Used Tech Stack

  1. Django
  2. Sqlite

Screenshots

Home page

Login page

Add new position as employer

Job details

Swagger API

Local environment

Install

  1. Create a virtual environment

    virtualenv venv

    Or

    python3.8 -m venv venv

  2. Activate it

    source venv/bin/activate

  3. Clone the repository and install the packages in the virtual env:

    pip install -r requirements.txt

  4. Add .env file.

    cp .env.dev.sample .env

  5. Add Github client ID and client secret in the .env file

Run

1.With the venv activate it, execute:

python manage.py collectstatic

Note : Collect static is not necessary when debug is True (in dev mode)

  1. Create initial database:

    python manage.py migrate

  2. Load demo data (optional):

    python manage.py loaddata fixtures/app_name_initial_data.json --app app.model_name

  3. Run server:

    python manage.py runserver

Run test:

python manage.py test

To dump data:

python manage.py dumpdata --format=json --indent 4 app_name > app_name/fixtures/app_name_initial_data.json

Show your support by 🌟 the project!!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].