back to root goals/expectations

This commit is contained in:
shockrahwow
2019-11-13 18:54:53 -08:00
parent dd112f7c7a
commit de35db1a9a
3 changed files with 0 additions and 0 deletions

4
freechat-client/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
node_modules/
target/
static/css/
.sass-cache

14
freechat-client/Makefile Normal file
View File

@@ -0,0 +1,14 @@
# Building primarily css here
sass=static/sass/*
css=
for item in $(sass) \
css=$(css) $${item: scss:css} \
done
all:
mkdir -p static/css/
for item in $(css) \
sass static/sass
sass static/sass:static/css

View File

@@ -0,0 +1,5 @@
# Client Build
This will be where we keep the code for the web-based-client.
This client comms with our server code base found under `/server/` in this repository.