Skip to content

mhtempc/AssetStorm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AssetStorm

Logo by Albert Hulm

AssetStorm lets you save data with your preferred schemas in a PostgreSQL database. This can be used for publications like magazines or websites but also for a lot of other things.

There is no frontend included with AssetStorm. It just exposes its API.

Development setup

On Ubuntu install postgresql and libpq-dev.

After that create a virtual environment and install the requirements:

python3 -m venv venv
source env/bin/activate
pip install -r requirements.txt

After that start the postgres server and create an account and a database for development:

sudo systemctl start postgresql
sudo -u postgres psql postgres
postgres=# \password postgres
Enter new password: 
Enter it again: 
postgres=# CREATE USER assetStorm;
CREATE ROLE
postgres=# CREATE DATABASE AssetStormDevelop OWNER assetStorm;
CREATE DATABASE
postgres=# \password assetStorm
Enter new password: 
Enter it again:
postgres=# ALTER USER assetstorm CREATEDB;
ALTER ROLE

About

Asset Management System

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%