Skip to content

APCLab/appmate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AppMate

https://travis-ci.org/APCLab/appmate.svg?branch=master

Appmate is your friend.

Python support: 3.4 and 3.5

Quick Start

Requirements

pip install -r ./requirements.txt

Create DataBase

python manage.py migrate
python manage.py createsuperuser

Run the Development Server

python manage.py runserver

And, enjoy!

Add a New Model

  1. Define your model(s) in app/appmate.yml.

  2. Compile the Jinja templates:

    (cd app && make)
    
  3. Do the database migration:

    python manage.py makemigrations app
    python manage.py migrate app