Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ieee-nitk/embedathon-website

Django based web application to host IEEE NITK's flagship embedded systems hackathon, Embedathon
https://github.com/ieee-nitk/embedathon-website

django python

Last synced: 4 days ago
JSON representation

Django based web application to host IEEE NITK's flagship embedded systems hackathon, Embedathon

Awesome Lists containing this project

README

        

# Embedathon Website

Django based web application for hosting Embedathon 2022

## Installation Steps for Localhost Setup

If running using Docker Containers, use the following command:

```bash
docker-compose --env-file ./embedathon_website/example.env up
```

### Common Issues

1. If the `start` script cannot be found, ensure that the `LF` line endings are used (uses `CRLF` in Windows by default).

If building the application from scratch, use the following commands:

```bash
pip install -r requirements.txt

mysql -u -p
>> create database embedathon;
>> exit;

cd embedathon_website
cp example.env .env
# fill up the .env file with your local info
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
# open localhost:8000 on your browser
```