Vintage 4tk cassette recorders
A website to collect vintage 4 tracks cassette recorders.
Local development setup
- Copy and customize Django settings (especially https://docs.djangoproject.com/en/3.2/ref/settings/#databases)
$ cp vintage4tk/settings/ci.py vintage4tk/settings/local.py
$ $EDITOR vintage4tk/settings/local.py
- Create a virtualenv and install the python and node requirements
$ python -m venv venv
$ . ./venv/bin/activate
$ pip install -r requirements.txt
$ npm install
- Create the database and migrate the schema
$ createdb
--owner=
$ python manage.py migrate
- Load some test data
$ python manage.py loaddata users brands recorders
- Build the frontend static files
npm run build
- Run the development server and css compilation
$ supervisord
Visit the website at http://127.0.0.1:8000 and the admin interface at http://127.0.0.1:8000/admin
The admin username and password are admin / adminadmin.