Created and maintained by: TheReddKing (TechX)
python -m venv env
source env/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
yarn
cp .env.example .env
cd client && yarn
Then edit your .env
file. Once your database url is correct (you can use createdb template
if you have postgres)
python manage.py db init
python manage.py db migrate
python manage.py db upgrade
yarn run dev
or (if you want to debug server side scripts)
yarn start
yarn run dev-server
Look at the HOWTHISWASMADE.md file for more information
You first need to actually create a heroku application. You can also use the app.json
to deploy (you can read about it somewhere else)
Then you need to copy over the environmental variables from your local computer
sed 's/#[^("|'')]*$//;s/^#.*$//' .env | \
xargs heroku config:set
Afterwards, a simple heroku push will configure everything
git push heroku master