Syarat.ID Source Code
Syarat.ID is a content aggregator website that gathering all informations with the specific keyword: "syarat" from the internet.
This repository contains source code from the syarat.id site.
To run this project on your own local machine, please follow the installation steps below:
# clone to your local machine
$ git clone [email protected]:syarat/syarat.git
$ cd syarat
# create your own virtual environment
$ python -m venv env
# install the project dependencies
$ pip install -r requirements.txt
# run makemigrations and migrate
$ ./manage.py makemigrations
$ ./manage.py migrate
# create a superuser
$ ./manage.py createsuperuser
# load the dummy data
$ ./manage.py loaddata fixtures/db.json
# run the server
$ ./manage.py runserver
# DONE
Fixing error that comes from django-compressor
$ pip install rjsmin --install-option="--without-c-extensions"
$ pip install rcssmin --install-option="--without-c-extensions"
For contributing, please open an issue or make your own change and create a PR.