Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ieee-nitk/embedathon-website
- Owner: IEEE-NITK
- Created: 2022-01-19T14:31:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-29T09:39:45.000Z (about 2 years ago)
- Last Synced: 2023-08-04T00:43:47.290Z (over 1 year ago)
- Topics: django, python
- Language: HTML
- Homepage:
- Size: 6.49 MB
- Stars: 2
- Watchers: 5
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
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.txtmysql -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
```