All Projects → sujinleeme → Sujinlee.me

sujinleeme / Sujinlee.me

Sujin's Personal Website

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Sujinlee.me

Book Code
《Django开发从入门到实战》书籍各章节源代码
Stars: ✭ 28 (-15.15%)
Mutual labels:  django
Django Auth Example
Sample project for my talk at DjangoCongress JP 2018.
Stars: ✭ 30 (-9.09%)
Mutual labels:  django
Recyclomedia
Recyclomedia is a digital platform that aims to save the planet from pollution which is the major threat to the functioning of earth.
Stars: ✭ 32 (-3.03%)
Mutual labels:  django
Djangorestframework Book
Django REST framework 3 中文文档, API参考, 最佳实践指南
Stars: ✭ 28 (-15.15%)
Mutual labels:  django
Django Graph Api
Pythonic implementation of the GraphQL specification for the Django Web Framework.
Stars: ✭ 29 (-12.12%)
Mutual labels:  django
Note App Django Vue Javascript
An example of a note application using django and vue.js
Stars: ✭ 31 (-6.06%)
Mutual labels:  django
Django Cloud Tasks
Integrate Google Cloud Tasks with Django
Stars: ✭ 27 (-18.18%)
Mutual labels:  django
Djangorestframework Mvt
Serve Mapbox Vector Tiles with Django and Postgres
Stars: ✭ 33 (+0%)
Mutual labels:  django
Bedrock
Making mozilla.org awesome, one pebble at a time
Stars: ✭ 953 (+2787.88%)
Mutual labels:  django
Django Precise Bbcode
A Django application for parsing, displaying and editing BBCodes-based text contents.
Stars: ✭ 31 (-6.06%)
Mutual labels:  django
Django Spectator
A Django app to track book reading, and event going.
Stars: ✭ 28 (-15.15%)
Mutual labels:  django
Ihealth site
iHealth 项目的后台程序(一个基于 Django 和 MongoDB 的 Web 后端)
Stars: ✭ 29 (-12.12%)
Mutual labels:  django
Supervisoradmin
supervisor admin is a centralized management tools written by django
Stars: ✭ 31 (-6.06%)
Mutual labels:  django
Django S3 Like Storage
Your Own Amazon S3 Django Storage
Stars: ✭ 28 (-15.15%)
Mutual labels:  django
Django Djeddit
Minimalistic Reddit clone developed as a Django reusable app
Stars: ✭ 32 (-3.03%)
Mutual labels:  django
Framework
The Framework is a set of components and tools which brings the user an interface (GUI / API) to setup, extend and manage an Open vStorage platform.
Stars: ✭ 27 (-18.18%)
Mutual labels:  django
Django On Docker Letsencrypt
Securing a Containerized Django Application with Let's Encrypt
Stars: ✭ 31 (-6.06%)
Mutual labels:  django
Django Two Factor Auth
Complete Two-Factor Authentication for Django providing the easiest integration into most Django projects.
Stars: ✭ 967 (+2830.3%)
Mutual labels:  django
Lunch With Channels
Stars: ✭ 32 (-3.03%)
Mutual labels:  django
Django Countries
A Django application that provides country choices for use with forms, flag icons static files, and a country field for models.
Stars: ✭ 962 (+2815.15%)
Mutual labels:  django

Sujin Lee's official website

A website for personal blogging and project.

About

  • See : https://sujinlee.me
  • Author : Design & Code by Sujin Lee
  • Tech: Django 1.10(python 3.5+), HTML5 & SASS, JavaScript, gulp

Version

  • Last Updated : 2017. 2.
  • version 1. : 2016. 3.

References

Django third party apps
Built with
  • HTML & SCSS, Javascript
  • Framework: Django 1.10
  • Build Tools: Gulp
  • Editor: Markdown, KaTeX

Design

Setting up Development Environment

Git clone this repository in your working directory. git clone https://github.com/sujinleeme/official-website.git

virtualenv

1 - Install new virtual environment

python3 -m venv [name]

2 - Activate your virtual environment

source [name]/bin/activate

3 - Install packages according to requirements.txt

pip3 install -r requirements.txt

❗️ django_markdown package Issue

Becausedjango_mardown doesn't support the lastet version of django, depreciated `django.conf.urls.patterns' must to be removed.

Make sure that hange your urls.py under Lib/site-packages/django_markdown to:

""" Define preview URL. """

from django.conf.urls import url

from .views import preview

urlpatterns = [
    url('preview/$', preview, name='django_markdown_preview'),
]
  1. DB migration
python3 manage.py migrate

gulp

1 - Activate virtual enviroment firstly and run this command in your project directory to install gulp.

npm install --save-dev gulp

2 - And than, install gulp packages according to package.json.

npm install

Run Development Server

1 - Start the web server by running python manage.py runserver

python manage.py runsslserver

2 - Run gulp to work frontend automating tasks.

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