A web app for drawing and sharing art straight from your web browser.
- clone this repo
- install Python 3.11.4
- setup a Python virtual environment:
- on Windows, execute
python -m venv venv
- on Linux, execute
python3 -m venv venv
- on Windows, execute
- activate the virtual environment:
- on Windows, execute
.\venv\Scripts\activate
- on Linux, execute
./env/bin/activate
- on Windows, execute
- execute
pip install -r requirements.txt
to install the project dependencies - execute
cd InkSpot
to switch to the Django project folder - execute
python manage.py migrate
to apply migrations to the database - exeucte
python manage.py createsuperuser
to create a super user account - execute
python manage.py runserver
to start the web server - visit http://localhost:8000 in your web browser