https://github.com/zurfyx/simple
Project sharing platform
https://github.com/zurfyx/simple
django education projects
Last synced: about 2 months ago
JSON representation
Project sharing platform
- Host: GitHub
- URL: https://github.com/zurfyx/simple
- Owner: zurfyx
- License: mit
- Created: 2016-04-21T15:31:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-04T19:24:11.000Z (over 8 years ago)
- Last Synced: 2025-02-05T23:59:35.954Z (3 months ago)
- Topics: django, education, projects
- Language: Python
- Size: 1.32 MB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple
## Requeriments
- Python 2.7.5
- Ruby## Installation
### Source code
```
git clone https://github.com/zurfyx/simple
```### Install dependencies
```
pip install -r requirements.txt
gem install sass
```#### Developers
```
pip install -r requirements_dev.txt
```## How to run
### Environment variables
**DJANGO_SETTINGS_MODULE**: settings module that will be loaded on start
(by default `config.development`, which will be changed in upcoming versions)### Create superuser(s)
```
cd simple/;
python manage.py createsuperuser;
```### Start the website
By default it will start in development mode
(will be changed in upcoming versions):```
cd simple/;
python manage.py migrate;
python manage.py runserver;
```Check it out at [127.0.0.1:8000](http://127.0.0.1:8000).
#### Developers
Developers might as well use [Livereload](https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei?hl=en).
```
python manage.py livereload // livereload server
python manage.py runserver
```