simple django imageboard engine
In principle, you should follow this steps:
- Install requirements
pip install -r requirements.txt- Go to /imageboard/ folder
- Make and apply migrations
python manage.py makemigrationspython manage.py migrate- Run server
python manage.py runserverYou can specify address to host to the outside
python manage.py runserver 0.0.0.0:5000(port 5000 is just example)
Then open at http://localhost:yourport
If you want to use admin panel, create superuser via:
python manage.py createsuperuserI hope I made everything clear