preprint server
Project description
INSTALL
Create your new project:
poetry new myproject
cd myproject
poetry add piprints
poetry run manage
Initialize the database
poetry run manage migrate
poetry run manage collectstatic --no-input
(or test database connection with poetry run manage dbshell)
Create the first user
poetry run manage createsuperuser
Collect static files
poetry run manage collectstatic
Run the server
poetry run manage runserver
and then connect to localhost:8000/admin/ for the initial configuration.
You should create a SiteParameter object.
The id of this object must be given to the server configuration
throught the SITE_ID configuration variable.
The default value is 2, hence if you have a diffent value check the configuration section below.
Once an admin has been created, anyone can make a request for an account (from the login page) and the admin can manage account requests. You can then change a user's password with the command
poetry run manage changepassword <username>
Warning: the default configuration is not suitable for production. You should carefully check your configuration (see section below) in particular for production you should have
DEBUG=False a randomly choosen SECRET_KEY and possibly
a solid database (mysql or postgres instead of sqlite).
CONFIGURATION
Configuration is loaded from environment variables.
For example, to set the SITE_ID you should issue this command
export SITE_ID=2
before running the server. This is not permanent. To make it permanent you can create a .env file (in the same directory as the README.md file) and insert there all variables definition:
echo "SITE_ID=2" >> .env
An example file listing all settings is provided in the file .env.example
You can check the values of settings with the command
poetry run manage diffsettings
DEPLOY USING PIP
create a working directory on your server
mkdir piprints
cd piprints
create a virtualenv and activate it:
python -m venv venv
. venv/bin/activate
install the latest version of piprints:
pip install piprints
You might need the following additional packages, depending on your configuration:
pip install mysqlclient # if you use mysql as database
pip install httplib2 # if you want to connect to arxiv
pip install oauth2client google-api-python-client # to use google calendar
Configure your .env file as described above
The manage command should be available in your shell (when the virtual environment is active):
manage
You can use manage runserver to run a debug server. Otherwise for production use you should adapt the piprints/wsgi.py script
BUILD pypi PACKAGE
Remember to bump version in pyproject.toml.
poetry build
poetry publish
MAKE requirements.txt
poetry self add poetry-plugin-export
poetry export --without-hashes --format requirements.txt --output requirements.txt
BACKUP
Per fare un dump del database il comando che sembra funzionare e' questo:
da un lato:
python manage.py dumpdata --exclude=contenttypes --exclude=auth.Permission --exclude=admin -o mydump.json
dall'altro lato:
python manage.py flush ## cancella il database!!
python manage.py loaddata mydump.json
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file piprints-4.0.15.tar.gz.
File metadata
- Download URL: piprints-4.0.15.tar.gz
- Upload date:
- Size: 7.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.3 Linux/6.8.0-59-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4132bd73a06e0e5868887563dbe041bf0a945b54d51ec9c3dd1f997e2c27e60e
|
|
| MD5 |
c378be67809272ca5692e51255c3208a
|
|
| BLAKE2b-256 |
c32d16244cf12eec82bd7fdea28fbcbbfb1e6037d67cef842a423e673a3aab6e
|
File details
Details for the file piprints-4.0.15-py3-none-any.whl.
File metadata
- Download URL: piprints-4.0.15-py3-none-any.whl
- Upload date:
- Size: 7.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.3 Linux/6.8.0-59-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b8f6dc007f66c20611114700be2a4b1cb2671d5d10d02b7c5c121d24ab42d04
|
|
| MD5 |
ea4c31e4d14bd6aa8a3592679572679d
|
|
| BLAKE2b-256 |
2f4c6d082a39d3306867ff19406eaa1d8a15667c610cb9ac7a45c8a3f5b329fa
|