All Projects → ramanaditya → Microsoft-Student-Partners

ramanaditya / Microsoft-Student-Partners

Licence: MIT license
This is the unofficial website for the Microsoft Student Partners

Programming Languages

HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Microsoft-Student-Partners

Django-WebApp
This is a web-app created using Python, Django. By using this user can login, upload files and also can view and download files uploaded by other users.
Stars: ✭ 285 (+2092.31%)
Mutual labels:  django-framework, django-project
lets-quiz
A quiz website for organizing online quizzes and tests. It's build using Python/Django and Bootstrap4 frameworks. 🤖
Stars: ✭ 165 (+1169.23%)
Mutual labels:  django-framework, django-project
mubapp
MUB is a multi-user blog web app using the Python-Django infrastructure.
Stars: ✭ 24 (+84.62%)
Mutual labels:  django-framework, django-project
Fenice-Network
Building the job search portal which helps both recruiters and job seekers to get perfect jobs.
Stars: ✭ 20 (+53.85%)
Mutual labels:  django-framework, django-project
Banking System
A banking System Created Using Django Python Web Framework
Stars: ✭ 105 (+707.69%)
Mutual labels:  django-framework
Django Jinja Knockout
Django datatables and widgets, both AJAX and traditional. Display-only ModelForms. ModelForms / inline formsets with AJAX submit and validation. Works with Django templates.
Stars: ✭ 116 (+792.31%)
Mutual labels:  django-framework
Channels Obstruction
A simple game of Obstruction created to explore Django + Django Channels + ReactJS
Stars: ✭ 86 (+561.54%)
Mutual labels:  django-framework
ESP32
DroneBridge for ESP32. A short range wifi based telemetry link. Support for MAVLink, MSP & LTM (iNAV).
Stars: ✭ 183 (+1307.69%)
Mutual labels:  msp
Pyarweb
El sitio web de Python Argentina
Stars: ✭ 73 (+461.54%)
Mutual labels:  django-framework
python-kaynaklari
Python Türkiye Facebook sayfasında başlatılan projenin yeni sayfası
Stars: ✭ 30 (+130.77%)
Mutual labels:  django-framework
Cheatsheets.pdf
📚 Various cheatsheets in PDF
Stars: ✭ 159 (+1123.08%)
Mutual labels:  django-framework
Shopping Cart Using Django 2.0 And Python 3.6
This is a shopping cart application created using Django 2.0 and Python 3.6
Stars: ✭ 126 (+869.23%)
Mutual labels:  django-framework
classmanager-student-teacher-portal
A Student-Teacher Portal built using HTML, CSS, Python and Django
Stars: ✭ 155 (+1092.31%)
Mutual labels:  django-project
kasir
Cashier Management & Inventory Management System
Stars: ✭ 28 (+115.38%)
Mutual labels:  django-framework
mwptools
ground station, mission planner and tools for inav and multiwii-nav
Stars: ✭ 147 (+1030.77%)
Mutual labels:  msp
Django Newsfeed
A news curator and newsletter subscription package for Django
Stars: ✭ 155 (+1092.31%)
Mutual labels:  django-framework
Awesome Django
Repository mirror of GitLab: https://gitlab.com/rosarior/awesome-django This repository is not monitored for issues, use original at GitLab.
Stars: ✭ 8,527 (+65492.31%)
Mutual labels:  django-framework
Django Dersleri
YouTube Django Dersleri için proje kaynak kodu
Stars: ✭ 135 (+938.46%)
Mutual labels:  django-framework
FakeDataGenerator
fakedatagenerator.herokuapp.com/
Stars: ✭ 18 (+38.46%)
Mutual labels:  django-framework
PyEditorial
A free, open-source Blog CMS based on the "Django" and "Editorial" HTML5 theme.
Stars: ✭ 178 (+1269.23%)
Mutual labels:  django-project

Microsoft Student Partners

This is the unofficial website for the Microsoft Student Partners

image image GitHub Release GitHub license GitHub stars GitHub forks GitHub top language

:License: MIT

Setup

GitHub code size in bytes GitHub commit activity GitHub repo size

  1. Clone the repository

    $ git clone https://github.com/ramanaditya/Microsoft-Student-Partners
  2. Create a virtual environment using virtualenv or venv.

    $ virtualenv -p python3 venv/ 
    $ source venv/bin/activate
  3. Install python packages

    $ pip3 install -r requirements/local.txt
  4. Install OS dependencies (For linux systems only, others have to install it manually)

    $ sudo ./utility/install\_os\_dependencies.sh install
  5. Makemigrations and migrate

    $ python manage.py makemigrations
    $ python manage.py migrate
  6. Run project locally

    $ python manage.py runserver --settings=config.settings.local

Settings

Moved to settings_.

.. _settings: http://cookiecutter-django.readthedocs.io/en/latest/settings.html

Basic Commands

Setting Up Your Users

  • To create a normal user account, just go to Sign Up and fill out the form. Once you submit it, you'll see a "Verify Your E-mail Address" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.

  • To create an superuser account, use this command::

    $ python manage.py createsuperuser

For convenience, you can keep your normal user logged in on Chrome and your superuser logged in on Firefox (or similar), so that you can see how the site behaves for both kinds of users.

Type checks

Running type checks with mypy:

$ mypy microsoft_student_partners

Test coverage

To run the tests, check your test coverage, and generate an HTML coverage report::

$ coverage run -m pytest
$ coverage html
$ open htmlcov/index.html

Running tests with py.test

$ pytest

Live reloading and Sass CSS compilation

Moved to Live reloading and SASS compilation_.

.. _Live reloading and SASS compilation: http://cookiecutter-django.readthedocs.io/en/latest/live-reloading-and-sass-compilation.html

Sentry

Sentry is an error logging aggregator service. You can sign up for a free account at https://sentry.io/signup/?code=cookiecutter or download and host it yourself. The system is setup with reasonable defaults, including 404 logging and integration with the WSGI application.

You must set the DSN url in production.

Issues

GitHub issues PRs Welcome GitHub last commit

// No Issues now.

NOTE: Feel free to open issues. Make sure you follow the Issue Template provided.

Contribution Guidelines

GitHub pull requests GitHub contributors

  • Write clear meaningful git commit messages (Do read this).

  • Make sure your PR's description contains GitHub's special keyword references that automatically close the related issue when the PR is merged. (Check this for more info)

  • When you make very very minor changes to a PR of yours (like for example fixing a text in button, minor changes requested by reviewers) make sure you squash your commits afterward so that you don't have an absurd number of commits for a very small fix. (Learn how to squash at here)

  • When you're submitting a PR for a UI-related issue, it would be really awesome if you add a screenshot of your change or a link to a deployment where it can be tested out along with your PR. It makes it very easy for the reviewers and you'll also get reviews quicker.

  • Please follow the PR Template to create the PR.

  • Always open PR to develop branch.

  • Please read our Code of Conduct.

  • Refer this for more.

If you like this repository, support it by star 🌟

with love forthebadge smile please

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].