yagomichalak / django-test

This is a repository made with the only purpose of putting my Django skills to the practice, during a 4-hour long test I was provided by a secret company.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Desafio Django

This is a repo for the new website we're building for The Language Sloth server on Discord.

How to Run it

Make sure you you have Python ande NodeJS installed and run the following commands on your command console

Create a virtual environment

(Depending on your Python installation, it might be python3, python3.8 etc)

$ python -m venv venv

Activate it

Linux

$ . venv/bin/activate

Windows

$ venv\Scripts\activate

Install Python dependencies

$ pip install -r requirements.txt

Make SQLite and its alterations

$ cd ..
$ python manage.py makemigrations
$ python manage.py migrate

Get static files (css, js, imgs)

$ python manage.py collectstatic

Go to the project's root folder and un server

$ python manage.py runserver

About

This is a repository made with the only purpose of putting my Django skills to the practice, during a 4-hour long test I was provided by a secret company.

License:MIT License


Languages

Language:CSS 47.0%Language:JavaScript 46.0%Language:Python 5.5%Language:HTML 1.4%